Changeset 14239
- Timestamp:
- 04/09/08 13:56:20 (3 months ago)
- Files:
-
- branches/1.5/gdal/frmts/pds/isis3dataset.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.5/gdal/frmts/pds/isis3dataset.cpp
r12888 r14239 144 144 CPLError( CE_Failure, CPLE_FileIO, 145 145 "Failed to read %d bytes for tile %d,%d.", 146 nBlockSize, nXBlock, nYBlock );146 (int) nBlockSize, nXBlock, nYBlock ); 147 147 return CE_Failure; 148 148 } … … 495 495 /*********** Grab SEMI-MAJOR ************/ 496 496 semi_major = 497 atof(poDS->GetKeyword( "IsisCube.Mapping.EquatorialRadius")) * 1000.0;497 atof(poDS->GetKeyword( "IsisCube.Mapping.EquatorialRadius")); 498 498 499 499 /*********** Grab semi-minor ************/ 500 500 semi_minor = 501 atof(poDS->GetKeyword( "IsisCube.Mapping.PolarRadius")) * 1000.0;501 atof(poDS->GetKeyword( "IsisCube.Mapping.PolarRadius")); 502 502 503 503 /*********** Grab CENTER_LAT ************/
