I am looking for a way to easily plot a world map with a higher resolution compared to the built in resolution of Geopandas. To my knowing the built in dataset for a world map is only in low resolution:
import geopandas
world = geopandas.read_file(geopandas.datasets.get_path('naturalearth_lowres'))
world.plot()
plt.show()
I already read this page but couldn't find an answer: https://geopandas.org/en/stable/docs/user_guide/mapping.html#
I am not looking for google maps precision, but I would appreciate a map where if I zoom in, Belgium for example is plotted by a polygon which has a bit more than 14 points (see screenshot). (Let's say 100 to 1000 points.)
(I need the full map of the world as I am plotting data in different countries and would like to zoom in.)
