EPSG:15595

EPSG topocentric example B

Attributes

Data source: EPSG

Information source: EPSG Guidance Note #7-2.

Revision date: 2007-11-01

Scope: Defines geocentric coordinates of origin of topocentric CS.

Remarks: Example only.

Method: Geocentric/topocentric conversions

Area of use: Not specified.

Description: (0,)

MapTiler banner

Definition: OGC Well Known Text 2 (2019)

CONVERSION["EPSG topocentric example B",
    METHOD["Geocentric/topocentric conversions",
        ID["EPSG",9836]],
    PARAMETER["Geocentric X of topocentric origin",3771793.97,
        LENGTHUNIT["metre",1],
        ID["EPSG",8837]],
    PARAMETER["Geocentric Y of topocentric origin",140253.34,
        LENGTHUNIT["metre",1],
        ID["EPSG",8838]],
    PARAMETER["Geocentric Z of topocentric origin",5124304.35,
        LENGTHUNIT["metre",1],
        ID["EPSG",8839]],
    ID["EPSG",15595]]

Definition: PROJ.4

+proj=topocentric +X_0=3771793.97 +Y_0=140253.34 +Z_0=5124304.35

Definition: JavaScript (Proj4js)

proj4.defs("EPSG:15595","+proj=topocentric +X_0=3771793.97 +Y_0=140253.34 +Z_0=5124304.35");

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "Conversion",
    "name": "EPSG topocentric example B",
    "method": {
        "name": "Geocentric/topocentric conversions",
        "id": {
            "authority": "EPSG",
            "code": 9836
        }
    },
    "parameters": [
        {
            "name": "Geocentric X of topocentric origin",
            "value": 3771793.97,
            "unit": "metre",
            "id": {
                "authority": "EPSG",
                "code": 8837
            }
        },
        {
            "name": "Geocentric Y of topocentric origin",
            "value": 140253.34,
            "unit": "metre",
            "id": {
                "authority": "EPSG",
                "code": 8838
            }
        },
        {
            "name": "Geocentric Z of topocentric origin",
            "value": 5124304.35,
            "unit": "metre",
            "id": {
                "authority": "EPSG",
                "code": 8839
            }
        }
    ],
    "id": {
        "authority": "EPSG",
        "code": 15595
    }
}

Definition: MapServer - MAPfile

PROJECTION
	"proj=topocentric"
	"X_0=3771793.97"
	"Y_0=140253.34"
	"Z_0=5124304.35"
END

Definition: Mapnik

<?xml version="1.0" encoding="utf-8"?>
<Map srs="+proj=topocentric +X_0=3771793.97 +Y_0=140253.34 +Z_0=5124304.35">
	<Layer srs="+proj=topocentric +X_0=3771793.97 +Y_0=140253.34 +Z_0=5124304.35">
	</Layer>
</Map>

Definition: SQL (PostGIS)

INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 15595, 'EPSG', 15595, '+proj=topocentric +X_0=3771793.97 +Y_0=140253.34 +Z_0=5124304.35', 'None');