Changes between Initial Version and Version 1 of Ticket #2744


Ignore:
Timestamp:
Feb 28, 2010, 6:59:11 PM (14 years ago)
Author:
warmerdam
Comment:

Corrected handling of Mercator2SP (9805) in ogr_fromepsg.cpp in trunk (r18979). With this change 3388 expands as:

PROJCS["Pulkovo 1942 / Caspian Sea Mercator",
    GEOGCS["Pulkovo 1942",
        DATUM["Pulkovo_1942",
            SPHEROID["Krassowsky 1940",6378245,298.3,
                AUTHORITY["EPSG","7024"]],
            TOWGS84[23.92,-141.27,-80.9,-0,0.35,0.82,-0.12],
            AUTHORITY["EPSG","6284"]],
        PRIMEM["Greenwich",0,
            AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.01745329251994328,
            AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4284"]],
    UNIT["metre",1,
        AUTHORITY["EPSG","9001"]],
    PROJECTION["Mercator_2SP"],
    PARAMETER["standard_parallel_1",42],
    PARAMETER["central_meridian",51],
    PARAMETER["false_easting",0],
    PARAMETER["false_northing",0],
    AUTHORITY["EPSG","3388"],
    AXIS["none",NORTH],
    AXIS["none",EAST]]

and translates to PROJ.4 as:

+proj=merc +lon_0=51 +lat_ts=42 +x_0=0 +y_0=0 
           +ellps=krass  +towgs84=23.92,-141.27,-80.9,-0,0.35,0.82,-0.12 
           +units=m +no_defs 

It would be desirable to have a known test point for 3388. Note this change also corrects the interpretation of EPSG:3994 WGS/Mercator41.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2744

    • Property Keywords Mercator2SP added
    • Property Status newclosed
    • Property Resolutionfixed
  • Ticket #2744 – Description

    initial v1  
    11From http://lists.osgeo.org/pipermail/metacrs/2008-December/000185.html:
    22
    3 * EPSG:3388, Pulkovo 1942 / Caspian Sea Mercator                               
     3 * EPSG:3388, Pulkovo 1942 / Caspian Sea Mercator                               
    44                                                                               
    5 According to EPSG, the projection method is "Mercator (2SP)", coord op method  9805,                                                                         
    6 with a standard parallel at 42?N. But on SpatialReference.org, the projection method in OGC WKT is given as    "Mercator_1SP",                                                               
    7 and the standard parallel is absent from the parameters.                       
    8 
     5According to EPSG, the projection method is "Mercator (2SP)", coord op method  9805,                                                                           with a standard parallel at 42?N. But on SpatialReference.org, the projection method in OGC WKT is given as    "Mercator_1SP",                                                                and the standard parallel is absent from the parameters.