Description
These two geo impls have a very limited polygon support that does not support inner rings (holes) or multiple outer rings efficiently.
Basically if you want to do this, you are left building crazy logic with booleanquery which will send memory into the gigabytes for a single query, needlessly.
For example Russia polygon from geonames is 250KB of geojson and over a thousand outer rings.
We should instead support this stuff with the queries themselves, especially it will allow us to implement things more efficiently in the future.
I think instead of newPolygonQuery(double[], double[]) it should look like newPolygonQuery(Polygon...). A polygon can be a single outer ring (shape) with 0 or more inner rings (holes). No nesting, you just use multiply polygons if you e.g. have an island.
See http://esri.github.io/geometry-api-java/doc/Polygon.html for visuals and examples. I indented their GeoJSON example:
{ "type":"MultiPolygon", "coordinates": [ // first polygon (order does not matter could have been last instead) [ // clockwise => outer ring [[0.0,0.0],[-0.5,0.5],[0.0,1.0],[0.5,1.0],[1.0,0.5],[0.5,0.0],[0.0,0.0]], // hole [[0.5,0.2],[0.6,0.5],[0.2,0.9],[-0.2,0.5],[0.1,0.2],[0.2,0.3],[0.5,0.2]] ], // second polygon (order does not matter, could have been first instead) [ // island [[0.1,0.7],[0.3,0.7],[0.3,0.4],[0.1,0.4],[0.1,0.7]] ] ], }
Attachments
Attachments
Issue Links
- incorporates
-
LUCENE-7145 We need only one set of polygon util methods
- Closed