EPSG:4303

TC(1948)

Attributes

Unit: degree (supplier to define representation)

Geodetic CRS: TC(1948)

Datum: Trucial Coast 1948

Ellipsoid: Helmert 1906

Prime meridian: Greenwich

Data source: EPSG

Revision date: 2004-01-06

Center coordinates
53.8 23.98

WGS84 bounds:
51.56 22.63
56.03 25.34

United Arab Emirates (UAE) - Abu Dhabi onshore and Dubai onshore.
MapTiler banner

Definition: OGC Well Known Text

GEOGCS["TC(1948)",
    DATUM["Trucial_Coast_1948",
        SPHEROID["Helmert 1906",6378200,298.3,
            AUTHORITY["EPSG","7020"]],
        AUTHORITY["EPSG","6303"]],
    PRIMEM["Greenwich",0,
        AUTHORITY["EPSG","8901"]],
    UNIT["degree",0.0174532925199433,
        AUTHORITY["EPSG","9122"]],
    AUTHORITY["EPSG","4303"]]

Definition: OGC Well Known Text 2 (2019)

GEOGCRS["TC(1948)",
    DATUM["Trucial Coast 1948",
        ELLIPSOID["Helmert 1906",6378200,298.3,
            LENGTHUNIT["metre",1]]],
    PRIMEM["Greenwich",0,
        ANGLEUNIT["degree",0.0174532925199433]],
    CS[ellipsoidal,2],
        AXIS["geodetic latitude (Lat)",north,
            ORDER[1],
            ANGLEUNIT["degree",0.0174532925199433]],
        AXIS["geodetic longitude (Lon)",east,
            ORDER[2],
            ANGLEUNIT["degree",0.0174532925199433]],
    USAGE[
        SCOPE["Geodesy."],
        AREA["United Arab Emirates (UAE) - Abu Dhabi onshore and Dubai onshore."],
        BBOX[22.63,51.56,25.34,56.03]],
    ID["EPSG",4303]]

Definition: ESRI Well Known Text

GEOGCS["GCS_Trucial_Coast_1948",
    DATUM["D_Trucial_Coast_1948",
        SPHEROID["Helmert_1906",6378200.0,298.3]],
    PRIMEM["Greenwich",0.0],
    UNIT["Degree",0.0174532925199433]]

Definition: PROJ.4

+proj=longlat +ellps=helmert +no_defs +type=crs

Definition: JavaScript (Proj4js)

proj4.defs("EPSG:4303","+proj=longlat +ellps=helmert +no_defs +type=crs");

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "GeographicCRS",
    "name": "TC(1948)",
    "datum": {
        "type": "GeodeticReferenceFrame",
        "name": "Trucial Coast 1948",
        "ellipsoid": {
            "name": "Helmert 1906",
            "semi_major_axis": 6378200,
            "inverse_flattening": 298.3
        }
    },
    "coordinate_system": {
        "subtype": "ellipsoidal",
        "axis": [
            {
                "name": "Geodetic latitude",
                "abbreviation": "Lat",
                "direction": "north",
                "unit": "degree"
            },
            {
                "name": "Geodetic longitude",
                "abbreviation": "Lon",
                "direction": "east",
                "unit": "degree"
            }
        ]
    },
    "scope": "Geodesy.",
    "area": "United Arab Emirates (UAE) - Abu Dhabi onshore and Dubai onshore.",
    "bbox": {
        "south_latitude": 22.63,
        "west_longitude": 51.56,
        "north_latitude": 25.34,
        "east_longitude": 56.03
    },
    "id": {
        "authority": "EPSG",
        "code": 4303
    }
}

Definition: GeoServer

4303=GEOGCS["TC(1948)",DATUM["Trucial_Coast_1948",SPHEROID["Helmert 1906",6378200,298.3,AUTHORITY["EPSG","7020"]],AUTHORITY["EPSG","6303"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4303"]]

Definition: MapServer - MAPfile

PROJECTION
	"proj=longlat"
	"ellps=helmert"
	"no_defs"
	"type=crs"
END

Definition: Mapnik

<?xml version="1.0" encoding="utf-8"?>
<Map srs="+proj=longlat +ellps=helmert +no_defs +type=crs">
	<Layer srs="+proj=longlat +ellps=helmert +no_defs +type=crs">
	</Layer>
</Map>

Definition: SQL (PostGIS)

INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 4303, 'EPSG', 4303, '+proj=longlat +ellps=helmert +no_defs +type=crs', 'GEOGCS["TC(1948)",DATUM["Trucial_Coast_1948",SPHEROID["Helmert 1906",6378200,298.3,AUTHORITY["EPSG","7020"]],AUTHORITY["EPSG","6303"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4303"]]');