EPSG:CODE

EPSG:3145 ETRS89-FRO [2008] / Faroe Lambert

Projected · Faroe Islands - onshore

Export Formats

OGC WKT
PROJCS[
    "ETRS89 / Faroe Lambert",
    GEOGCS[
        "ETRS89",
        DATUM[
            "European_Terrestrial_Reference_System_1989",
            SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],
            TOWGS84[0,0,0,0,0,0,0],
            AUTHORITY["EPSG","6258"]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4258"]
    ],
    PROJECTION["Lambert_Conic_Conformal_(West_Orientated)"],
    PARAMETER["Latitude of natural origin",62],
    PARAMETER["Longitude of natural origin",-9],
    PARAMETER["Scale factor at natural origin",1],
    PARAMETER["False easting",500000],
    PARAMETER["False northing",500000],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AUTHORITY["EPSG","3145"]
]

Related Coordinate Systems

Available Transformations (1)

Transformations inherited from base CRS: EPSG:11087 (ETRS89-FRO [2008])

Transformation Source → Target Accuracy (m)
11087 4326 1

Other CRS using ETRS89-FRO [2008]

Frequently Asked Questions

How do I add EPSG:3145 to GeoServer?

Add the following definition to your GeoServer configuration:

3145=PROJCS["ETRS89 / Faroe Lambert",GEOGCS["ETRS89",DATUM["European_Terrestrial_Reference_System_1989",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],TOWGS84[0,0,0,0,0,0,0],AUTHORITY["EPSG","6258"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4258"]],PROJECTION["Lambert_Conic_Conformal_(West_Orientated)"],PARAMETER["Latitude of natural origin",62],PARAMETER["Longitude of natural origin",-9],PARAMETER["Scale factor at natural origin",1],PARAMETER["False easting",500000],PARAMETER["False northing",500000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","3145"]]
Read the full GeoServer guide →

How do I add EPSG:3145 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (3145, 'EPSG', 3145, '', 'PROJCS["ETRS89 / Faroe Lambert",GEOGCS["ETRS89",DATUM["European_Terrestrial_Reference_System_1989",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],TOWGS84[0,0,0,0,0,0,0],AUTHORITY["EPSG","6258"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4258"]],PROJECTION["Lambert_Conic_Conformal_(West_Orientated)"],PARAMETER["Latitude of natural origin",62],PARAMETER["Longitude of natural origin",-9],PARAMETER["Scale factor at natural origin",1],PARAMETER["False easting",500000],PARAMETER["False northing",500000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","3145"]]');
Read the full PostGIS guide →