Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No module named 'ogr' error GDAL >= 3.2 #522

Open
danwild opened this issue Sep 9, 2021 · 0 comments
Open

No module named 'ogr' error GDAL >= 3.2 #522

danwild opened this issue Sep 9, 2021 · 0 comments

Comments

@danwild
Copy link

danwild commented Sep 9, 2021

From GDAL v3.2, importing in this way:

 import ogr

fails with error (apparently, this import approach "has been deprecated for 10 years")

Trace:

import ocgis
  File "/opt/conda/lib/python3.9/site-packages/ocgis/__init__.py", line 23, in <module>
    from .spatial.geom_cabinet import GeomCabinet, GeomCabinetIterator, ShpCabinet, ShpCabinetIterator
  File "/opt/conda/lib/python3.9/site-packages/ocgis/spatial/geom_cabinet.py", line 5, in <module>
    import ogr
ModuleNotFoundError: No module named 'ogr'

From what I can see, we only need to change this line in geom_cabinet.py, to be:

from osgeo import ogr

PR to follow.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant