i have this python script where i need to run 'gdal_retile.py'
but i get this an exception on this line:
if Verbose:
print("Building internam Index for %d tile(s) ..." % len(inputTiles), end=' ')
the end='' is invalid syntax just curious as to why.. and what the author probably meant to do.
I'm new to python if you haven't already guessed.
Edit: Added the opening quote. that was just a typo*
I think the root cause of the problem is that these imports are failing
and therefore one must contain this import from __future__ import print_function
try:
from osgeo import gdal
from osgeo import ogr
from osgeo import osr
from osgeo.gdalconst import *
except:
import gdal
import ogr
import osr
from gdalconst import *
Thanks all.
__future__import. – Mike Graham Mar 16 '10 at 16:36ClassNamesshould begin with a lower-case letter. – Mike Graham Mar 16 '10 at 16:37