Changes between Version 6 and Version 7 of Ticket #1414


Ignore:
Timestamp:
Mar 26, 2007, 9:00:39 PM (17 years ago)
Author:
warmerdam
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1414 – Description

    v6 v7  
    1 {{{
    2 When operating in the C locale, GDAL cannot read world files using commas
    3 in place of a period as the decimal point (ie. typical of the "de" locale
    4 for instance).
    51
    6 Please modify the worldfile reading code to support either "." or "," as the
    7 decimal place regardless of the working locale.  Basically, use the
    8 CPLAtof() function in place of atof().
     2When operating in the C locale, GDAL cannot read world files using commas in place of a period as the decimal point (ie. typical of the "de" locale  for instance).
     3
     4Please modify the worldfile reading code to support either "." or "," as the decimal place regardless of the working locale.  Basically, use the CPLAtof() function in place of atof().
    95
    106(see GDALReadWorldFile() in gdal/gcore/gdal_misc.cpp)
    117
    128Make sure a test of this is added to the test suite.
    13 }}}