AttributeError : Module 'pyproj' Has No Attribute 'CRS'
map dbscan import geopandas as gpd import contextily as ctx import pyproj from mpl_toolkits.axes_grid1.inset_locator import inset_axes crs_4326 = pyproj.CRS('EPSG:4326') # Latitud
Solution 1:
Just had the same issue. I was using pyproj version 2.6.0
Updating the package to latest version available solved it.
Post a Comment for "AttributeError : Module 'pyproj' Has No Attribute 'CRS'"