EPSG:CODE

ESRI:102062 Kertau RSO Malaya Meters

Projected · Malaysia - West Malaysia - onshore

Export Formats

OGC WKT
PROJCS[
    "Kertau_RSO_Malaya_Meters",
    GEOGCS[
        "GCS_Kertau",
        DATUM["D_Kertau",SPHEROID["Everest_1830_Modified",6377304.063,300.8017]],
        PRIMEM["Greenwich",0.0],
        UNIT["Degree",0.0174532925199433]
    ],
    PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],
    PARAMETER["False_Easting",804671.299775],
    PARAMETER["False_Northing",0.0],
    PARAMETER["Scale_Factor",0.99984],
    PARAMETER["Azimuth",-36.97420943711801],
    PARAMETER["Longitude_Of_Center",102.25],
    PARAMETER["Latitude_Of_Center",4.0],
    PARAMETER["XY_Plane_Rotation",-36.86989764584402],
    UNIT["Meter",1.0]
]

Frequently Asked Questions

How do I add ESRI:102062 to GeoServer?

Add the following definition to your GeoServer configuration:

102062=PROJCS["Kertau_RSO_Malaya_Meters",GEOGCS["GCS_Kertau",DATUM["D_Kertau",SPHEROID["Everest_1830_Modified",6377304.063,300.8017]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],PARAMETER["False_Easting",804671.299775],PARAMETER["False_Northing",0.0],PARAMETER["Scale_Factor",0.99984],PARAMETER["Azimuth",-36.97420943711801],PARAMETER["Longitude_Of_Center",102.25],PARAMETER["Latitude_Of_Center",4.0],PARAMETER["XY_Plane_Rotation",-36.86989764584402],UNIT["Meter",1.0]]
Read the full GeoServer guide →

How do I add ESRI:102062 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102062, 'ESRI', 102062, '+proj=omerc +ellps=evrst48 +x_0=804671.299775 +y_0=0.0 +k_0=0.99984 +lonc=102d15''E +lat_0=4dN +alpha=-36.97420943711801 +gamma=-36.86989764584402 +no_uoff +towgs84=-11.0,851.0,5.0 +no_defs', 'PROJCS["Kertau_RSO_Malaya_Meters",GEOGCS["GCS_Kertau",DATUM["D_Kertau",SPHEROID["Everest_1830_Modified",6377304.063,300.8017]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],PARAMETER["False_Easting",804671.299775],PARAMETER["False_Northing",0.0],PARAMETER["Scale_Factor",0.99984],PARAMETER["Azimuth",-36.97420943711801],PARAMETER["Longitude_Of_Center",102.25],PARAMETER["Latitude_Of_Center",4.0],PARAMETER["XY_Plane_Rotation",-36.86989764584402],UNIT["Meter",1.0]]');
Read the full PostGIS guide →

How do I add ESRI:102062 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=omerc"
  "+ellps=evrst48"
  "+x_0=804671.299775"
  "+y_0=0.0"
  "+k_0=0.99984"
  "+lonc=102d15'E"
  "+lat_0=4dN"
  "+alpha=-36.97420943711801"
  "+gamma=-36.86989764584402"
  "+no_uoff"
  "+towgs84=-11.0,851.0,5.0"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:102062 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:102062", "+proj=omerc +ellps=evrst48 +x_0=804671.299775 +y_0=0.0 +k_0=0.99984 +lonc=102d15'E +lat_0=4dN +alpha=-36.97420943711801 +gamma=-36.86989764584402 +no_uoff +towgs84=-11.0,851.0,5.0 +no_defs");
Read the full Proj4js guide →