ESRI:102061 — Everest Modified 1969 RSO Malaya Meters
Projected · Malaysia - West Malaysia - onshore
Export Formats
OGC WKT
PROJCS[
"Everest_Modified_1969_RSO_Malaya_Meters",
GEOGCS[
"GCS_Everest_Modified_1969",
DATUM[
"D_Everest_Modified_1969",
SPHEROID["Everest_Modified_1969",6377295.664,300.8017]
],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]
],
PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],
PARAMETER["False_Easting",804670.24],
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:102061 to GeoServer?
Add the following definition to your GeoServer configuration:
102061=PROJCS["Everest_Modified_1969_RSO_Malaya_Meters",GEOGCS["GCS_Everest_Modified_1969",DATUM["D_Everest_Modified_1969",SPHEROID["Everest_Modified_1969",6377295.664,300.8017]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],PARAMETER["False_Easting",804670.24],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:102061 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102061, 'ESRI', 102061, '+proj=omerc +ellps=evrst69 +x_0=804670.24 +y_0=0.0 +k_0=0.99984 +lonc=102d15''E +lat_0=4dN +alpha=-36.97420943711801 +gamma=-36.86989764584402 +no_uoff +no_defs', 'PROJCS["Everest_Modified_1969_RSO_Malaya_Meters",GEOGCS["GCS_Everest_Modified_1969",DATUM["D_Everest_Modified_1969",SPHEROID["Everest_Modified_1969",6377295.664,300.8017]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Rectified_Skew_Orthomorphic_Natural_Origin"],PARAMETER["False_Easting",804670.24],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:102061 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=omerc"
"+ellps=evrst69"
"+x_0=804670.24"
"+y_0=0.0"
"+k_0=0.99984"
"+lonc=102d15'E"
"+lat_0=4dN"
"+alpha=-36.97420943711801"
"+gamma=-36.86989764584402"
"+no_uoff"
"+no_defs"
END Read the full MapServer guide →
How do I use ESRI:102061 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("ESRI:102061", "+proj=omerc +ellps=evrst69 +x_0=804670.24 +y_0=0.0 +k_0=0.99984 +lonc=102d15'E +lat_0=4dN +alpha=-36.97420943711801 +gamma=-36.86989764584402 +no_uoff +no_defs"); Read the full Proj4js guide →