Ticket #1644 (closed defect: fixed)

Opened 1 year ago

Last modified 1 year ago

Precision in ENVI output insufficient, patch included

Reported by: rbanfield Assigned to: warmerdam
Priority: normal Milestone: 1.4.2
Component: GDAL_Raster Version: unspecified
Severity: normal Keywords: envi
Cc:

Description

Hello,

The precision in the output in envidataset.cpp in frmts/raw/ is insufficient and we were seeing errors of up to 5 pixels after geolinking in ENVI. After the patch, all was good. This unpatched version is the 05/17/2007 daily SVN release.

461c461 < osLocation.Printf( "1, 1, %f, %f, %f, %f", ---

osLocation.Printf( "1, 1, %.11lf, %.11lf, %.11lf, %.11lf",

Thanks, Robert

Change History

06/07/07 13:18:47 changed by warmerdam

  • keywords set to envi.
  • component changed from default to GDAL_Raster.
  • status changed from new to closed.
  • resolution set to fixed.
  • milestone set to 1.4.2.

Changed to this in trunk and something similar in 1.4 branch.

osLocation.Printf( "1, 1, %.15g, %.15g, %.15g, %.15g",

Thanks!