EPSG:CODE

EPSG:6202 NAD27 / Michigan South

Projected · USA - Michigan - SPCS - S

Export Formats

WKT2
PROJCRS[
    "NAD27 / Michigan South",
    BASEGEOGCRS[
        "NAD27",
        DATUM[
            "North American Datum 1927",
            ELLIPSOID[
                "Clarke 1866",
                6378206.4,
                294.978698213898,
                LENGTHUNIT["metre",1,ID["EPSG",9001]],
                ID["EPSG",7008]
            ],
            ID["EPSG",6267]
        ],
        ID["EPSG",4267]
    ],
    CONVERSION[
        "Michigan CS27 South zone",
        METHOD["Lambert Conic Conformal (2SP Michigan)",ID["EPSG",1051]],
        PARAMETER[
            "Latitude of false origin",
            41.5000000000003,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8821]
        ],
        PARAMETER[
            "Longitude of false origin",
            -84.3333333333336,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8822]
        ],
        PARAMETER[
            "Latitude of 1st standard parallel",
            42.1000000000003,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8823]
        ],
        PARAMETER[
            "Latitude of 2nd standard parallel",
            43.6666666666669,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8824]
        ],
        PARAMETER[
            "Easting at false origin",
            2000000,
            LENGTHUNIT["US survey foot",0.304800609601219,ID["EPSG",9003]],
            ID["EPSG",8826]
        ],
        PARAMETER[
            "Northing at false origin",
            0,
            LENGTHUNIT["US survey foot",0.304800609601219,ID["EPSG",9003]],
            ID["EPSG",8827]
        ],
        PARAMETER[
            "Ellipsoid scaling factor",
            1.0000382,
            SCALEUNIT["unity",1,ID["EPSG",9201]],
            ID["EPSG",1038]
        ],
        ID["EPSG",6199]
    ],
    CS[Cartesian,2,ID["EPSG",4497]],
    AXIS["Easting (X)",east],
    AXIS["Northing (Y)",north],
    LENGTHUNIT["US survey foot",0.304800609601219,ID["EPSG",9003]],
    ID["EPSG",6202]
]

Related Coordinate Systems

Available Transformations (168)

Transformations inherited from base CRS: EPSG:4267 (NAD27)

Other CRS using North American Datum 1927 (194)

Frequently Asked Questions

How do I add EPSG:6202 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (6202, 'EPSG', 6202, '+proj=lcc +lat_0=41.5 +lon_0=-84.3333333333333 +lat_1=42.1 +lat_2=43.6666666666667 +x_0=609601.219202438 +y_0=0 +k_0=1.0000382 +ellps=clrk66 +nadgrids=NTv2_0.gsb +units=us-ft +no_defs +type=crs', '');
Read the full PostGIS guide →

How do I add EPSG:6202 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+lat_0=41.5"
  "+lon_0=-84.3333333333333"
  "+lat_1=42.1"
  "+lat_2=43.6666666666667"
  "+x_0=609601.219202438"
  "+y_0=0"
  "+k_0=1.0000382"
  "+ellps=clrk66"
  "+nadgrids=NTv2_0.gsb"
  "+units=us-ft"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:6202 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:6202", "+proj=lcc +lat_0=41.5 +lon_0=-84.3333333333333 +lat_1=42.1 +lat_2=43.6666666666667 +x_0=609601.219202438 +y_0=0 +k_0=1.0000382 +ellps=clrk66 +nadgrids=NTv2_0.gsb +units=us-ft +no_defs +type=crs");
Read the full Proj4js guide →