EPSG:CODE

EPSG:29902 TM65 / Irish Grid

Projected · Ireland - onshore

Export Formats

OGC WKT
PROJCS[
    "TM65 / Irish Grid",
    GEOGCS[
        "TM65",
        DATUM[
            "TM65",
            SPHEROID["Airy Modified 1849",6377340.189,299.3249646],
            TOWGS84[482.5,-130.6,564.6,-1.042,-0.214,-0.631,8.15]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4299"]
    ],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["latitude_of_origin",53.5],
    PARAMETER["central_meridian",-8],
    PARAMETER["scale_factor",1.000035],
    PARAMETER["false_easting",200000],
    PARAMETER["false_northing",250000],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","29902"]
]

Related Coordinate Systems

Available Transformations (3)

Transformations inherited from base CRS: EPSG:4299 (TM65)

Transformation Source → Target Accuracy (m)
4299 4326 1
TM65 to WGS 84 (1) Deprecated
4299 4326
TM65 to ETRS89 (1) Deprecated
4299 4258

Other CRS using TM65

Frequently Asked Questions

How do I add EPSG:29902 to GeoServer?

Add the following definition to your GeoServer configuration:

29902=PROJCS["TM65 / Irish Grid",GEOGCS["TM65",DATUM["TM65",SPHEROID["Airy Modified 1849",6377340.189,299.3249646],TOWGS84[482.5,-130.6,564.6,-1.042,-0.214,-0.631,8.15]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4299"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",53.5],PARAMETER["central_meridian",-8],PARAMETER["scale_factor",1.000035],PARAMETER["false_easting",200000],PARAMETER["false_northing",250000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","29902"]]
Read the full GeoServer guide →

How do I add EPSG:29902 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (29902, 'EPSG', 29902, '+proj=tmerc +lat_0=53.5 +lon_0=-8 +k=1.000035 +x_0=200000 +y_0=250000 +a=6377340.189 +rf=299.3249646 +towgs84=482.5,-130.6,564.6,-1.042,-0.214,-0.631,8.15 +units=m +no_defs +type=crs', 'PROJCS["TM65 / Irish Grid",GEOGCS["TM65",DATUM["TM65",SPHEROID["Airy Modified 1849",6377340.189,299.3249646],TOWGS84[482.5,-130.6,564.6,-1.042,-0.214,-0.631,8.15]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4299"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",53.5],PARAMETER["central_meridian",-8],PARAMETER["scale_factor",1.000035],PARAMETER["false_easting",200000],PARAMETER["false_northing",250000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","29902"]]');
Read the full PostGIS guide →

How do I add EPSG:29902 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+lat_0=53.5"
  "+lon_0=-8"
  "+k=1.000035"
  "+x_0=200000"
  "+y_0=250000"
  "+a=6377340.189"
  "+rf=299.3249646"
  "+towgs84=482.5,-130.6,564.6,-1.042,-0.214,-0.631,8.15"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:29902 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:29902", "+proj=tmerc +lat_0=53.5 +lon_0=-8 +k=1.000035 +x_0=200000 +y_0=250000 +a=6377340.189 +rf=299.3249646 +towgs84=482.5,-130.6,564.6,-1.042,-0.214,-0.631,8.15 +units=m +no_defs +type=crs");
Read the full Proj4js guide →