EPSG:CODE

EPSG:3300 Estonian Coordinate System of 1992

Projected · Estonia - onshore

Export Formats

OGC WKT
PROJCS[
    "Estonian Coordinate System of 1992",
    GEOGCS[
        "EST92",
        DATUM[
            "Estonia_1992",
            SPHEROID["GRS 1980",6378137,298.257222101],
            TOWGS84[0.055,-0.541,-0.185,-0.0183,0.0003,0.007,-0.014]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4133"]
    ],
    PROJECTION["Lambert_Conformal_Conic_2SP"],
    PARAMETER["latitude_of_origin",57.5175539305556],
    PARAMETER["central_meridian",24],
    PARAMETER["standard_parallel_1",59.3333333333333],
    PARAMETER["standard_parallel_2",58],
    PARAMETER["false_easting",500000],
    PARAMETER["false_northing",6375000],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AUTHORITY["EPSG","3300"]
]

Related Coordinate Systems

Available Transformations (3)

Transformations inherited from base CRS: EPSG:4133 (EST92)

Transformation Source → Target Accuracy (m)
4133 4258 0.1
4133 4326 0.5
4284 4133 9

Other CRS using Estonia 1992

Frequently Asked Questions

How do I add EPSG:3300 to GeoServer?

Add the following definition to your GeoServer configuration:

3300=PROJCS["Estonian Coordinate System of 1992",GEOGCS["EST92",DATUM["Estonia_1992",SPHEROID["GRS 1980",6378137,298.257222101],TOWGS84[0.055,-0.541,-0.185,-0.0183,0.0003,0.007,-0.014]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4133"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["latitude_of_origin",57.5175539305556],PARAMETER["central_meridian",24],PARAMETER["standard_parallel_1",59.3333333333333],PARAMETER["standard_parallel_2",58],PARAMETER["false_easting",500000],PARAMETER["false_northing",6375000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","3300"]]
Read the full GeoServer guide →

How do I add EPSG:3300 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (3300, 'EPSG', 3300, '+proj=lcc +lat_0=57.5175539305556 +lon_0=24 +lat_1=59.3333333333333 +lat_2=58 +x_0=500000 +y_0=6375000 +ellps=GRS80 +towgs84=0.055,-0.541,-0.185,-0.0183,0.0003,0.007,-0.014 +units=m +no_defs +type=crs', 'PROJCS["Estonian Coordinate System of 1992",GEOGCS["EST92",DATUM["Estonia_1992",SPHEROID["GRS 1980",6378137,298.257222101],TOWGS84[0.055,-0.541,-0.185,-0.0183,0.0003,0.007,-0.014]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4133"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["latitude_of_origin",57.5175539305556],PARAMETER["central_meridian",24],PARAMETER["standard_parallel_1",59.3333333333333],PARAMETER["standard_parallel_2",58],PARAMETER["false_easting",500000],PARAMETER["false_northing",6375000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","3300"]]');
Read the full PostGIS guide →

How do I add EPSG:3300 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+lat_0=57.5175539305556"
  "+lon_0=24"
  "+lat_1=59.3333333333333"
  "+lat_2=58"
  "+x_0=500000"
  "+y_0=6375000"
  "+ellps=GRS80"
  "+towgs84=0.055,-0.541,-0.185,-0.0183,0.0003,0.007,-0.014"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:3300 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:3300", "+proj=lcc +lat_0=57.5175539305556 +lon_0=24 +lat_1=59.3333333333333 +lat_2=58 +x_0=500000 +y_0=6375000 +ellps=GRS80 +towgs84=0.055,-0.541,-0.185,-0.0183,0.0003,0.007,-0.014 +units=m +no_defs +type=crs");
Read the full Proj4js guide →