-
Notifications
You must be signed in to change notification settings - Fork 62
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
error intersecting polygons #37
Comments
Thanks for the bug report @jomel This is a simplified version of that geometry that still triggers the bug (by performing an {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[0.5242, 51.2815],
[0.52406, 51.281726],
[0.523787, 51.281453],
[0.5242, 51.2815]
]
]
}
},
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[0.5241, 51.2816],
[0.52401, 51.2817],
[0.523985, 51.281651],
[0.5241, 51.2816]
]
]
}
}
]
}
In this simplified geometry it looks like the problem is occurring because one vertex I'll see if I can figure out a fix. |
I've verified that the latest on master now successfully processes the coordinates linked to and quoted in this bug. |
see gist for polygons in question:
https://gist.github.com/jomel/45d2c23bc7d3b83143af18fb8ce1312a
when trying to run intersection()
I get :
I don't see anything odd about my geometries...
The text was updated successfully, but these errors were encountered: