I'm wondering if there is a way to center a geopandas world map on a particular point of longitude. Basically, just wanting to shift it by about ~5-10 degrees or so.
A previous question was posted several months ago, but didn't receive an answer. Wondering if anyone knows the solution. (Link to the original question on stackoverflow is here)
world = geopandas.read_file(geopandas.datasets.get_path('naturalearth_lowres'))
fig, ax = plt.subplots()
world.plot(ax=ax, color=(0.8,0.5,0.5))
Would really appreciate it if someone could help.
Thanks in advance
