EPSG:CODE

EPSG:2221 Scoresbysund 1952 / Greenland zone 6 east

Projected · Greenland - east coast - 68°N to 69°N

Export Formats

OGC WKT
PROJCS[
    "Scoresbysund 1952 / Greenland zone 6 east",
    GEOGCS[
        "Scoresbysund 1952",
        DATUM[
            "Scoresbysund_1952",
            SPHEROID["International 1924",6378388,297],
            TOWGS84[105,326,-102.5,0,0,0.814,-0.6]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4195"]
    ],
    PROJECTION["Lambert_Conic_Conformal_(West_Orientated)"],
    PARAMETER["Latitude of natural origin",67.5],
    PARAMETER["Longitude of natural origin",-32],
    PARAMETER["Scale factor at natural origin",1],
    PARAMETER["False easting",0],
    PARAMETER["False northing",0],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AUTHORITY["EPSG","2221"]
]

Related Coordinate Systems

Available Transformations (3)

Transformations inherited from base CRS: EPSG:4195 (Scoresbysund 1952)

Transformation Source → Target Accuracy (m)
4195 4326 1
4195 4747 10
4195 4747 12

Other CRS using Scoresbysund 1952

Frequently Asked Questions

How do I add EPSG:2221 to GeoServer?

Add the following definition to your GeoServer configuration:

2221=PROJCS["Scoresbysund 1952 / Greenland zone 6 east",GEOGCS["Scoresbysund 1952",DATUM["Scoresbysund_1952",SPHEROID["International 1924",6378388,297],TOWGS84[105,326,-102.5,0,0,0.814,-0.6]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4195"]],PROJECTION["Lambert_Conic_Conformal_(West_Orientated)"],PARAMETER["Latitude of natural origin",67.5],PARAMETER["Longitude of natural origin",-32],PARAMETER["Scale factor at natural origin",1],PARAMETER["False easting",0],PARAMETER["False northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","2221"]]
Read the full GeoServer guide →

How do I add EPSG:2221 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (2221, 'EPSG', 2221, '', 'PROJCS["Scoresbysund 1952 / Greenland zone 6 east",GEOGCS["Scoresbysund 1952",DATUM["Scoresbysund_1952",SPHEROID["International 1924",6378388,297],TOWGS84[105,326,-102.5,0,0,0.814,-0.6]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4195"]],PROJECTION["Lambert_Conic_Conformal_(West_Orientated)"],PARAMETER["Latitude of natural origin",67.5],PARAMETER["Longitude of natural origin",-32],PARAMETER["Scale factor at natural origin",1],PARAMETER["False easting",0],PARAMETER["False northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","2221"]]');
Read the full PostGIS guide →