Opened 17 years ago

Closed 17 years ago

#1644 closed defect (fixed)

Precision in ENVI output insufficient, patch included

Reported by: rbanfield Owned by: 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 (1)

comment:1 by warmerdam, 17 years ago

Component: defaultGDAL_Raster
Keywords: envi added
Milestone: 1.4.2
Resolution: fixed
Status: newclosed

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

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

Thanks!

Note: See TracTickets for help on using tickets.