-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PolygonUtils not in Jar #147
Comments
Hi, which methods do you want to use? |
I want to use functions for geofencing, PolygonUtils.isPointInPolygon2D() |
Will OperatorDisjoint work for you?
|
Yes, this works for me, thank you. but is it the best and fastest way? because i'm working on bigdata use case... will PolygonUtils be faster? |
@SiefSeif Use OperatorDisjoint. Avoid creating objects in a loop, you could also move OperatorDisjoint.local() call outside of the loop. The spatial reference is used to extract a tolerance value of about 1 mm and is used close to polygon borders, you can pass null spatial reference if you don't care about the tolerance. |
I need to use PolygonUtils but it's not in the released Jar.. how can i use it?..thank you.
The text was updated successfully, but these errors were encountered: