Changes between Initial Version and Version 1 of Ticket #4861, comment 2


Ignore:
Timestamp:
Jun 19, 2015, 8:43:32 AM (9 years ago)
Author:
avautour

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4861, comment 2

    initial v1  
    441. The latitude of natural origin for Mercator should always be zero (Equator) by definition, so having OGRSpatialReference::SetMercator() take in the center latitude is problematic. ESRI, EPSG and Proj4 are all consistent on that point as far as I can tell.
    552. ESRI's Mercator is really Mercator 2SP, so it stands to reason that SRS_PT_MERCATOR_2SP should be mapped to it by simply renaming the projection's name.
    6 3. The formulas for converting between the scale factor of 1SP to the first standard parellel of 2SP are as follows for the Mercator projection. See the EPSG Guidance Notes at http://www.iogp.org/pubs/373-07-2.pdf:
     63. The formulas for converting between the scale factor of 1SP to the first standard parallel of 2SP are as follows for the Mercator projection. See the EPSG Guidance Notes at http://www.iogp.org/pubs/373-07-2.pdf:
    77
    88 k0::
     
    1313   ellipsoid's first eccentricity
    1414
    15  1SP to 2SP::
     15 2SP to 1SP::
    1616   k0 = cos(sp) / sqrt( 1 - (e^2^ * sin^2^(sp)) )
    1717
    18  2SP to 1SP::
     18 1SP to 2SP::
    1919   sp = acos( sqrt( (1 - e^2^) / (1 / k0^2^) - e^2^) ) )