EPSG:CODE

EPSG:6700 Tokyo + JSLD72 height

Compound · Japan - onshore - Hokkaido

Export Formats

OGC WKT
COMPD_CS[
    "Tokyo + JSLD72 height",
    GEOGCS[
        "Tokyo",
        DATUM[
            "Tokyo",
            SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],
            AUTHORITY["EPSG","6301"]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4301"]
    ],
    VERT_CS[
        "JSLD72 height",
        VERT_DATUM[
            "Japanese Standard Levelling Datum 1972",
            2005,
            AUTHORITY["EPSG","1129"]
        ],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AXIS["Gravity-related height",UP],
        AUTHORITY["EPSG","6693"]
    ],
    AUTHORITY["EPSG","6700"]
]

Frequently Asked Questions

How do I add EPSG:6700 to GeoServer?

Add the following definition to your GeoServer configuration:

6700=COMPD_CS["Tokyo + JSLD72 height",GEOGCS["Tokyo",DATUM["Tokyo",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],AUTHORITY["EPSG","6301"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4301"]],VERT_CS["JSLD72 height",VERT_DATUM["Japanese Standard Levelling Datum 1972",2005,AUTHORITY["EPSG","1129"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","6693"]],AUTHORITY["EPSG","6700"]]
Read the full GeoServer guide →

How do I add EPSG:6700 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (6700, 'EPSG', 6700, '+proj=longlat +ellps=bessel +vunits=m +no_defs +type=crs', 'COMPD_CS["Tokyo + JSLD72 height",GEOGCS["Tokyo",DATUM["Tokyo",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],AUTHORITY["EPSG","6301"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4301"]],VERT_CS["JSLD72 height",VERT_DATUM["Japanese Standard Levelling Datum 1972",2005,AUTHORITY["EPSG","1129"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","6693"]],AUTHORITY["EPSG","6700"]]');
Read the full PostGIS guide →

How do I add EPSG:6700 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:6700 with Proj4js?

Add the following definition to your Proj4js configuration:

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