EduinHSERNA / pyGEDI

pyGEDI is a Python Package for NASA's Global Ecosystem Dynamics Investigation (GEDI) mission, data extraction, analysis, processing and visualization.
GNU General Public License v3.0
89 stars 41 forks source link

Compatibility with new GDAL import convention #5

Open walkeralexander opened 2 years ago

walkeralexander commented 2 years ago

GDAL 3.1 onward does not support the deprecated import

import gdal

You must now use

from osgeo import gdal.

https://pypi.org/project/GDAL/

Subites commented 3 months ago

Should i change all "import gdal" of this projects to use "import pyGEDI"?