EPSG:CODE

EPSG:4903 Madrid 1870 (Madrid)

Geographic 2D · Spain - mainland onshore

Export Formats

OGC WKT
GEOGCS[
    "Madrid 1870 (Madrid)",
    DATUM[
        "Madrid_1870_Madrid",
        SPHEROID["Struve 1860",6378298.3,294.73,AUTHORITY["EPSG","7028"]],
        AUTHORITY["EPSG","6903"]
    ],
    PRIMEM["Madrid",-3.687375,AUTHORITY["EPSG","8905"]],
    UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
    AUTHORITY["EPSG","4903"]
]

Related Coordinate Systems

Available Transformations (4)

Other CRS using Madrid 1870 (Madrid)

Frequently Asked Questions

How do I add EPSG:4903 to GeoServer?

Add the following definition to your GeoServer configuration:

4903=GEOGCS["Madrid 1870 (Madrid)",DATUM["Madrid_1870_Madrid",SPHEROID["Struve 1860",6378298.3,294.73,AUTHORITY["EPSG","7028"]],AUTHORITY["EPSG","6903"]],PRIMEM["Madrid",-3.687375,AUTHORITY["EPSG","8905"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4903"]]
Read the full GeoServer guide →

How do I add EPSG:4903 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (4903, 'EPSG', 4903, '+proj=longlat +a=6378298.3 +rf=294.73 +pm=-3.687375 +no_defs +type=crs', 'GEOGCS["Madrid 1870 (Madrid)",DATUM["Madrid_1870_Madrid",SPHEROID["Struve 1860",6378298.3,294.73,AUTHORITY["EPSG","7028"]],AUTHORITY["EPSG","6903"]],PRIMEM["Madrid",-3.687375,AUTHORITY["EPSG","8905"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4903"]]');
Read the full PostGIS guide →

How do I add EPSG:4903 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=longlat"
  "+a=6378298.3"
  "+rf=294.73"
  "+pm=-3.687375"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:4903 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:4903", "+proj=longlat +a=6378298.3 +rf=294.73 +pm=-3.687375 +no_defs +type=crs");
Read the full Proj4js guide →