Changes between Initial Version and Version 3 of Ticket #2527


Ignore:
Timestamp:
Aug 31, 2008, 11:44:09 AM (16 years ago)
Author:
Mateusz Łoskot
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2527 – Description

    initial v3  
    11In nitfimage.c there is little bit of code that appears to break georeferencing for *SOME* files from NGA.  Basically the georeference shows up way off target.  Older versions of GDAL (1.3.0 and back) do not have this issue and I tracked the culprit down to bug fix #1750 in nitfimage.c  When I remove this bit of code it works just fine for all the files that I have.  The code I removed is listed below.
    22
     3{{{
    34    /* Bug #1750 */
    45    /* Fix for cjnc/cjncz01/000k1023.jn1 (and similar) from NIMA GNCJNCN CDROM: */
     
    1314        psImage->dfLRX += 360;
    1415    }
     16
     17}}}