Open
Description
I try to add a map to coastlines drawn with basemap
, (both sources use the the same WGS84 Web Mercator projection):
import contextily as cx
import matplotlib.pyplot as plt
from mpl_toolkits.basemap import Basemap
# Map source
source = cx.providers.OpenStreetMap.Mapnik
# Plot
fig, ax = plt.subplots(figsize=(10, 10))
m = Basemap(
projection="merc", # Mercator-Projektion
epsg=3857, # WGS84 Web Mercator
llcrnrlat=44.82,
urcrnrlat=55.30,
llcrnrlon=5.89,
urcrnrlon=15.56,
resolution="i",
ax=ax,
)
m.drawcoastlines()
# Add context-basemap
cx.add_basemap(ax, crs="EPSG:3857", source=source)
# Show
plt.show()
but the maps doesn't match:
Is contextily
compatible to basemap
at all?
Metadata
Metadata
Assignees
Labels
No labels