diff --git a/scripts_v2/test_gdal b/scripts_v2/test_gdal new file mode 100644 index 0000000..c33e87d --- /dev/null +++ b/scripts_v2/test_gdal @@ -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')