You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Michael McCandless (JIRA)" <ji...@apache.org> on 2016/04/01 00:20:25 UTC

[jira] [Commented] (LUCENE-7153) give GeoPoint and LatLonPoint full polygon support

    [ https://issues.apache.org/jira/browse/LUCENE-7153?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15220763#comment-15220763 ] 

Michael McCandless commented on LUCENE-7153:
--------------------------------------------

+1 to commit the last patch: this is an immense step forward.  Thanks [~rcmuir]!

> give GeoPoint and LatLonPoint full polygon support
> --------------------------------------------------
>
>                 Key: LUCENE-7153
>                 URL: https://issues.apache.org/jira/browse/LUCENE-7153
>             Project: Lucene - Core
>          Issue Type: Improvement
>            Reporter: Robert Muir
>         Attachments: LUCENE-7153.patch, LUCENE-7153.patch, LUCENE-7153.patch
>
>
> 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:
> {noformat}
> {
>   "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]]
>      ]
>   ],
> }
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org