pelias / polygon-lookup

Fast point-in-polygon intersection for large numbers of polygons.
72 stars 17 forks source link

Can i Filter the Polygons to be queried using attributes #41

Open Devmaticz opened 5 years ago

Devmaticz commented 5 years ago

Hello,

i want to use this app for my telematics project, and make me lookup coordiantes on a set of polygones depending on a specific attribute

Sample :

1 - i have 03 polygons

            Poly1 { isDangerous : safe }
            Poly2 { isDangerous : danger }
            Poly3 { isDangerous : danger }

2 - then i have my Mom car, where i need to get polygon lookup, but only on polygone with { isDangerous : danger }

is there any way to do this ??

best