We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Note that [0, 0] appears twice in a row. Without this duplication, the geometry would be parsed correctly:
from lets_plot import * import geopandas as gp LetsPlot.setup_html() d = gp.read_file(""" {"type":"MultiPolygon","coordinates": [ [ [ [0,0], [0,0], [0, 5], [5, 5], [5, 0], [0, 0] ] ], [ [ [10, 10],[10, 20],[20, 20],[20, 10],[10, 10] ] ] ] }""") ggplot() + geom_polygon(map=d) + coord_fixed()
Actual:
Expected result:
d.plot()
The text was updated successfully, but these errors were encountered:
Fixed via d5c2cf3
Sorry, something went wrong.
RYangazov
No branches or pull requests
Note that [0, 0] appears twice in a row. Without this duplication, the geometry would be parsed correctly:
Actual:
Expected result:
The text was updated successfully, but these errors were encountered: