All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.document.LatLonPointInPolygonQuery Maven / Gradle / Ivy

There is a newer version: 10.1.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.lucene.document;

import java.io.IOException;
import java.util.Arrays;

import org.apache.lucene.index.PointValues.IntersectVisitor;
import org.apache.lucene.index.PointValues.Relation;
import org.apache.lucene.search.ConstantScoreScorer;
import org.apache.lucene.search.ConstantScoreWeight;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.Scorer;
import org.apache.lucene.search.Weight;
import org.apache.lucene.index.PointValues;
import org.apache.lucene.index.FieldInfo;
import org.apache.lucene.index.LeafReader;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.util.DocIdSetBuilder;
import org.apache.lucene.spatial.util.GeoRelationUtils;
import org.apache.lucene.spatial.util.GeoUtils;

/** Finds all previously indexed points that fall within the specified polygon.
 *
 *  

The field must be indexed with using {@link org.apache.lucene.document.LatLonPoint} added per document. * * @lucene.experimental */ final class LatLonPointInPolygonQuery extends Query { final String field; final double minLat; final double maxLat; final double minLon; final double maxLon; final double[] polyLats; final double[] polyLons; /** The lats/lons must be clockwise or counter-clockwise. */ public LatLonPointInPolygonQuery(String field, double[] polyLats, double[] polyLons) { this.field = field; if (field == null) { throw new IllegalArgumentException("field cannot be null"); } if (polyLats == null) { throw new IllegalArgumentException("polyLats cannot be null"); } if (polyLons == null) { throw new IllegalArgumentException("polyLons cannot be null"); } if (polyLats.length != polyLons.length) { throw new IllegalArgumentException("polyLats and polyLons must be equal length"); } if (polyLats.length < 4) { throw new IllegalArgumentException("at least 4 polygon points required"); } if (polyLats[0] != polyLats[polyLats.length-1]) { throw new IllegalArgumentException("first and last points of the polygon must be the same (it must close itself): polyLats[0]=" + polyLats[0] + " polyLats[" + (polyLats.length-1) + "]=" + polyLats[polyLats.length-1]); } if (polyLons[0] != polyLons[polyLons.length-1]) { throw new IllegalArgumentException("first and last points of the polygon must be the same (it must close itself): polyLons[0]=" + polyLons[0] + " polyLons[" + (polyLons.length-1) + "]=" + polyLons[polyLons.length-1]); } this.polyLats = polyLats; this.polyLons = polyLons; // TODO: we could also compute the maximal inner bounding box, to make relations faster to compute? double minLon = Double.POSITIVE_INFINITY; double minLat = Double.POSITIVE_INFINITY; double maxLon = Double.NEGATIVE_INFINITY; double maxLat = Double.NEGATIVE_INFINITY; for(int i=0;i= maxLat && cellMinLon <= minLon && cellMaxLon >= maxLon) { // Cell fully encloses the query return Relation.CELL_CROSSES_QUERY; } else if (GeoRelationUtils.rectWithinPolyPrecise(cellMinLat, cellMaxLat, cellMinLon, cellMaxLon, polyLats, polyLons, minLat, maxLat, minLon, maxLon)) { return Relation.CELL_INSIDE_QUERY; } else if (GeoRelationUtils.rectCrossesPolyPrecise(cellMinLat, cellMaxLat, cellMinLon, cellMaxLon, polyLats, polyLons, minLat, maxLat, minLon, maxLon)) { return Relation.CELL_CROSSES_QUERY; } else { return Relation.CELL_OUTSIDE_QUERY; } } }); return new ConstantScoreScorer(this, score(), result.build().iterator()); } }; } public String getField() { return field; } public double getMinLat() { return minLat; } public double getMaxLat() { return maxLat; } public double getMinLon() { return minLon; } public double getMaxLon() { return maxLon; } public double[] getPolyLats() { return polyLats; } public double[] getPolyLons() { return polyLons; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; if (!super.equals(o)) return false; LatLonPointInPolygonQuery that = (LatLonPointInPolygonQuery) o; if (field.equals(that.field) == false) { return false; } if (Arrays.equals(polyLons, that.polyLons) == false) { return false; } if (Arrays.equals(polyLats, that.polyLats) == false) { return false; } return true; } @Override public int hashCode() { int result = super.hashCode(); result = 31 * result + field.hashCode(); result = 31 * result + Arrays.hashCode(polyLons); result = 31 * result + Arrays.hashCode(polyLats); return result; } @Override public String toString(String field) { final StringBuilder sb = new StringBuilder(); sb.append(getClass().getSimpleName()); sb.append(':'); if (this.field.equals(field) == false) { sb.append(" field="); sb.append(this.field); sb.append(':'); } sb.append(" Points: "); for (int i=0; i





© 2015 - 2025 Weber Informatics LLC | Privacy Policy