|
39 | 39 | import org.apache.lucene.document.StringField;
|
40 | 40 | import org.apache.lucene.geo.Circle;
|
41 | 41 | import org.apache.lucene.geo.Component2D;
|
| 42 | +import org.apache.lucene.geo.GeoEncodingUtils; |
42 | 43 | import org.apache.lucene.geo.GeoUtils;
|
43 | 44 | import org.apache.lucene.geo.LatLonGeometry;
|
44 | 45 | import org.apache.lucene.geo.Polygon;
|
@@ -1751,4 +1752,41 @@ public void testSmallSetDistanceDateline() throws Exception {
|
1751 | 1752 | newDistanceQuery("point", 32.94823588839368, -179.9538113027811, 120000), 20);
|
1752 | 1753 | assertEquals(3, td.totalHits.value);
|
1753 | 1754 | }
|
| 1755 | + |
| 1756 | + public void testNarrowPolygonCloseToNorthPole() throws Exception { |
| 1757 | + IndexWriterConfig iwc = newIndexWriterConfig(); |
| 1758 | + iwc.setMergeScheduler(new SerialMergeScheduler()); |
| 1759 | + Directory dir = newDirectory(); |
| 1760 | + IndexWriter w = new IndexWriter(dir, iwc); |
| 1761 | + |
| 1762 | + // index point closes to Lat 90 |
| 1763 | + Document doc = new Document(); |
| 1764 | + final int base = Integer.MAX_VALUE; |
| 1765 | + addPointToDoc( |
| 1766 | + FIELD_NAME, |
| 1767 | + doc, |
| 1768 | + GeoEncodingUtils.decodeLatitude(base - 2), |
| 1769 | + GeoEncodingUtils.decodeLongitude(base - 2)); |
| 1770 | + w.addDocument(doc); |
| 1771 | + w.flush(); |
| 1772 | + |
| 1773 | + // query testing |
| 1774 | + final IndexReader reader = DirectoryReader.open(w); |
| 1775 | + final IndexSearcher s = newSearcher(reader); |
| 1776 | + |
| 1777 | + double minLat = GeoEncodingUtils.decodeLatitude(base - 3); |
| 1778 | + double maxLat = GeoEncodingUtils.decodeLatitude(base); |
| 1779 | + double minLon = GeoEncodingUtils.decodeLongitude(base - 3); |
| 1780 | + double maxLon = GeoEncodingUtils.decodeLongitude(base); |
| 1781 | + |
| 1782 | + Query query = |
| 1783 | + newPolygonQuery( |
| 1784 | + FIELD_NAME, |
| 1785 | + new Polygon( |
| 1786 | + new double[] {minLat, minLat, maxLat, maxLat, minLat}, |
| 1787 | + new double[] {minLon, maxLon, maxLon, minLon, minLon})); |
| 1788 | + |
| 1789 | + assertEquals(1, s.count(query)); |
| 1790 | + IOUtils.close(w, reader, dir); |
| 1791 | + } |
1754 | 1792 | }
|
0 commit comments