7 lines
137 B
Plaintext
7 lines
137 B
Plaintext
|
import sys
|
||
|
try:
|
||
|
from osgeo import ogr, osr, gdal
|
||
|
print('it works !')
|
||
|
except:
|
||
|
sys.exit('ERROR: cannot find GDAL/OGR modules')
|