-
Notifications
You must be signed in to change notification settings - Fork 17
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
Makie plotting LibGEOS MultiLineString shows additional lines #83
Comments
Any ideas about this @jw3126 ? Looks like the inner ring is being included together with the the outer ring so the start and end points join? |
What happens internally is that we convert to a
and than plot that. So I think what should be checked is that:
|
This works
and this works as well
So looks like it is not hitting the correct conversion. |
Thanks @jaakkor2 . I think it hits
For e.g. scatter this would be correct, but for lines, all Multi geometries will get messed up. So we need to intercept |
results in with extra line (0,0)->(1,1)
This in Makie
gives the expected output
The text was updated successfully, but these errors were encountered: