lets-plot
lets-plot copied to clipboard
Breaking of polygons that cross the 180th meridian
Example:
world = geopandas.read_file(geopandas.datasets.get_path("naturalearth_lowres"))
europe = world[world.continent == "Europe"]
ggplot() + geom_map(map=europe)
Output:

The plot looks ok to me. What is the issue exactly?
Sorry if the title is a bit confusing. It's not so much a bug, but a feature request. I would like to draw a map so that the piece of solid polygon cut off by the 180th meridian is glued to the right. This is a bit like issue #795.