GeoscienceAustralia / GeodePy

A toolkit for Geodesy and Surveying in Python
Apache License 2.0
91 stars 47 forks source link

Change GDAL import in height.py #151

Closed rbeucher closed 1 month ago

rbeucher commented 2 months ago

Hi,

The way GDAL is imported has changed since GDAL 3.2

import gdal

is now deprecated and has been replaced with

from osgeo import gdal

R