Create test_gdal

This commit is contained in:
MaelREBOUX 2021-11-29 21:52:32 +01:00
parent 6feee5cfd0
commit 10ed9dd8d8

6
scripts_v2/test_gdal Normal file
View file

@ -0,0 +1,6 @@
import sys
try:
from osgeo import ogr, osr, gdal
print('it works !')
except:
sys.exit('ERROR: cannot find GDAL/OGR modules')