Changeset 13543

Show
Ignore:
Timestamp:
01/18/08 14:54:40 (6 months ago)
Author:
warmerdam
Message:

One more fix to min/max python example.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gdal/doc/gdal_tutorial.dox

    r13542 r13543  
    237237        max = band.GetMaximum() 
    238238        if min is None or max is None: 
    239             (min,max) = ComputeRasterMinMax(1) 
     239            (min,max) = band.ComputeRasterMinMax(1) 
    240240        print 'Min=%.3f, Max=%.3f' % (min,max) 
    241241