EPSG:9922 — ETRS89 / ITM + BI height
Compound · Europe - Ireland (Republic and Ulster) - onshore
Export Formats
OGC WKT
COMPD_CS[
"ETRS89 / ITM + BI height",
PROJCS[
"IRENET95 / Irish Transverse Mercator",
GEOGCS[
"IRENET95",
DATUM[
"IRENET95",
SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],
AUTHORITY["EPSG","6173"]
],
PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
AUTHORITY["EPSG","4173"]
],
PROJECTION["Transverse_Mercator"],
PARAMETER["latitude_of_origin",53.5],
PARAMETER["central_meridian",-8],
PARAMETER["scale_factor",0.99982],
PARAMETER["false_easting",600000],
PARAMETER["false_northing",750000],
UNIT["metre",1,AUTHORITY["EPSG","9001"]],
AXIS["Easting",EAST],
AXIS["Northing",NORTH],
AUTHORITY["EPSG","2157"]
],
VERT_CS[
"BI height",
VERT_DATUM["British Isles height ensemble",2005,AUTHORITY["EPSG","1288"]],
UNIT["metre",1,AUTHORITY["EPSG","9001"]],
AXIS["Gravity-related height",UP],
AUTHORITY["EPSG","9451"]
],
AUTHORITY["EPSG","9922"]
]Frequently Asked Questions
How do I add EPSG:9922 to GeoServer?
Add the following definition to your GeoServer configuration:
9922=COMPD_CS["ETRS89 / ITM + BI height",PROJCS["IRENET95 / Irish Transverse Mercator",GEOGCS["IRENET95",DATUM["IRENET95",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6173"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4173"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",53.5],PARAMETER["central_meridian",-8],PARAMETER["scale_factor",0.99982],PARAMETER["false_easting",600000],PARAMETER["false_northing",750000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","2157"]],VERT_CS["BI height",VERT_DATUM["British Isles height ensemble",2005,AUTHORITY["EPSG","1288"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","9451"]],AUTHORITY["EPSG","9922"]] Read the full GeoServer guide →
How do I add EPSG:9922 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (9922, 'EPSG', 9922, '+proj=tmerc +lat_0=53.5 +lon_0=-8 +k=0.99982 +x_0=600000 +y_0=750000 +ellps=GRS80 +units=m +vunits=m +no_defs +type=crs', 'COMPD_CS["ETRS89 / ITM + BI height",PROJCS["IRENET95 / Irish Transverse Mercator",GEOGCS["IRENET95",DATUM["IRENET95",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6173"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4173"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",53.5],PARAMETER["central_meridian",-8],PARAMETER["scale_factor",0.99982],PARAMETER["false_easting",600000],PARAMETER["false_northing",750000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","2157"]],VERT_CS["BI height",VERT_DATUM["British Isles height ensemble",2005,AUTHORITY["EPSG","1288"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","9451"]],AUTHORITY["EPSG","9922"]]'); Read the full PostGIS guide →
How do I add EPSG:9922 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=tmerc"
"+lat_0=53.5"
"+lon_0=-8"
"+k=0.99982"
"+x_0=600000"
"+y_0=750000"
"+ellps=GRS80"
"+units=m"
"+vunits=m"
"+no_defs"
"+type=crs"
END Read the full MapServer guide →
How do I use EPSG:9922 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("EPSG:9922", "+proj=tmerc +lat_0=53.5 +lon_0=-8 +k=0.99982 +x_0=600000 +y_0=750000 +ellps=GRS80 +units=m +vunits=m +no_defs +type=crs"); Read the full Proj4js guide →