EPSG:CODE

EPSG:7404 RT90 + RH70 height

Compound · Sweden - onshore

Export Formats

OGC WKT
COMPD_CS[
    "RT90 + RH70 height",
    GEOGCS[
        "RT90",
        DATUM[
            "Rikets_koordinatsystem_1990",
            SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],
            AUTHORITY["EPSG","6124"]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4124"]
    ],
    VERT_CS[
        "RH70 height",
        VERT_DATUM["Rikets hojdsystem 1970",2005,AUTHORITY["EPSG","5117"]],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AXIS["Gravity-related height",UP],
        AUTHORITY["EPSG","5718"]
    ],
    AUTHORITY["EPSG","7404"]
]

Frequently Asked Questions

How do I add EPSG:7404 to GeoServer?

Add the following definition to your GeoServer configuration:

7404=COMPD_CS["RT90 + RH70 height",GEOGCS["RT90",DATUM["Rikets_koordinatsystem_1990",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],AUTHORITY["EPSG","6124"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4124"]],VERT_CS["RH70 height",VERT_DATUM["Rikets hojdsystem 1970",2005,AUTHORITY["EPSG","5117"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5718"]],AUTHORITY["EPSG","7404"]]
Read the full GeoServer guide →

How do I add EPSG:7404 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (7404, 'EPSG', 7404, '+proj=longlat +ellps=bessel +vunits=m +no_defs +type=crs', 'COMPD_CS["RT90 + RH70 height",GEOGCS["RT90",DATUM["Rikets_koordinatsystem_1990",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],AUTHORITY["EPSG","6124"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4124"]],VERT_CS["RH70 height",VERT_DATUM["Rikets hojdsystem 1970",2005,AUTHORITY["EPSG","5117"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5718"]],AUTHORITY["EPSG","7404"]]');
Read the full PostGIS guide →

How do I add EPSG:7404 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=longlat"
  "+ellps=bessel"
  "+vunits=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:7404 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:7404", "+proj=longlat +ellps=bessel +vunits=m +no_defs +type=crs");
Read the full Proj4js guide →