Changeset 12453

Show
Ignore:
Timestamp:
10/17/07 06:21:24 (7 months ago)
Author:
mloskot
Message:

Fixed calculation of yllcorner value using dy (adfGeoTransform[5]) instead of dx value (adfGeoTransform[1]). Fix was applied as patch to Ticket #1794.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gdal/frmts/aaigrid/aaigriddataset.cpp

    r12177 r12453  
    718718                 nXSize, nYSize,  
    719719                 adfGeoTransform[0],  
    720                  adfGeoTransform[3]- nYSize * adfGeoTransform[1], 
     720                 adfGeoTransform[3]- nYSize * adfGeoTransform[5], 
    721721                 adfGeoTransform[1], 
    722722                 fabs(adfGeoTransform[5]) );