Changeset 11757
- Timestamp:
- 07/17/07 16:01:01 (1 year ago)
- Files:
-
- branches/1.4/gdal/frmts/hfa/hfadataset.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.4/gdal/frmts/hfa/hfadataset.cpp
r11613 r11757 1046 1046 { 1047 1047 if( GetMetadataItem( "STATISTICS_HISTOBINVALUES" ) != NULL 1048 && GetMetadataItem( "STATISTICS_ MINIMUM" ) != NULL1049 && GetMetadataItem( "STATISTICS_ MAXIMUM" ) != NULL )1048 && GetMetadataItem( "STATISTICS_HISTOMIN" ) != NULL 1049 && GetMetadataItem( "STATISTICS_HISTOMAX" ) != NULL ) 1050 1050 { 1051 1051 int i; … … 1054 1054 GetMetadataItem( "STATISTICS_HISTOBINVALUES" ); 1055 1055 1056 *pdfMin = atof(GetMetadataItem("STATISTICS_ MINIMUM"));1057 *pdfMax = atof(GetMetadataItem("STATISTICS_ MAXIMUM"));1056 *pdfMin = atof(GetMetadataItem("STATISTICS_HISTOMIN")); 1057 *pdfMax = atof(GetMetadataItem("STATISTICS_HISTOMAX")); 1058 1058 1059 1059 *pnBuckets = 0;
