EPSG:3301 — Estonian Coordinate System of 1997
Projected · Estonia
Export Formats
OGC WKT
PROJCS[
"Estonian Coordinate System of 1997",
GEOGCS[
"EST97",
DATUM[
"Estonia_1997",
SPHEROID["GRS 1980",6378137,298.257222101],
TOWGS84[0,0,0,0,0,0,0]
],
PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
AUTHORITY["EPSG","4180"]
],
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","3301"]
]Related Coordinate Systems
Available Transformations (2)
Transformations inherited from base CRS: EPSG:4180 (ETRS89-EST [EST97])
| Transformation | Source → Target | Accuracy (m) |
|---|---|---|
| 4180 → 4326 | 1 | |
| EST97 to ETRS89 (1) Deprecated | 4180 → 4258 | 0 |
Other CRS for EE
Other CRS using Estonia 1997
Frequently Asked Questions
How do I add EPSG:3301 to GeoServer?
Add the following definition to your GeoServer configuration:
3301=PROJCS["Estonian Coordinate System of 1997",GEOGCS["EST97",DATUM["Estonia_1997",SPHEROID["GRS 1980",6378137,298.257222101],TOWGS84[0,0,0,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4180"]],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","3301"]] Read the full GeoServer guide →
How do I add EPSG:3301 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (3301, 'EPSG', 3301, '+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,0,0,0,0,0,0 +units=m +no_defs +type=crs', 'PROJCS["Estonian Coordinate System of 1997",GEOGCS["EST97",DATUM["Estonia_1997",SPHEROID["GRS 1980",6378137,298.257222101],TOWGS84[0,0,0,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4180"]],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","3301"]]'); Read the full PostGIS guide →
How do I add EPSG:3301 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,0,0,0,0,0,0"
"+units=m"
"+no_defs"
"+type=crs"
END Read the full MapServer guide →
How do I use EPSG:3301 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("EPSG:3301", "+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,0,0,0,0,0,0 +units=m +no_defs +type=crs"); Read the full Proj4js guide →