contextily icon indicating copy to clipboard operation
contextily copied to clipboard

Context geo-tiles in Python

Results 43 contextily issues
Sort by recently updated
recently updated
newest added

Code outputs 'CRSError: The WKT could not be parsed. OGR Error code 6' when trying to use add_basemap ```py # Snippet ax = boundary_map.plot(color="lightgrey", ax=ax) if background: cx.add_basemap(ax, crs=boundary_map.crs.to_string()) ```...

I try to add a map to coastlines drawn with `basemap`, (both sources use the the same WGS84 Web Mercator projection): ``` python import contextily as cx import matplotlib.pyplot as...

Follow-up from https://github.com/geopandas/contextily/issues/247 There are still Nonetype related errors after fixing https://github.com/geopandas/contextily/pull/248. When `array[0]` is None, the code fails on line 682 with an `AttributeError`: ``` /opt/hostedtoolcache/Python/3.12.5/x64/lib/python3.12/site-packages/contextily/plotting.py:134: in add_basemap image,...