Skip to content

contextily compatible to basemap? #256

Open
@a-ma72

Description

@a-ma72

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:

image

Is contextily compatible to basemap at all?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions