EPSG:CODE

ESRI:102064 Kandawala Ceylon Belt Indian Yards 1937

Projected · Sri Lanka - onshore

Export Formats

OGC WKT
PROJCS[
    "Kandawala_Ceylon_Belt_Indian_Yards_1937",
    GEOGCS[
        "GCS_Kandawala",
        DATUM["D_Kandawala",SPHEROID["Everest_Adjustment_1937",6377276.345,300.8017]],
        PRIMEM["Greenwich",0.0],
        UNIT["Degree",0.0174532925199433]
    ],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["False_Easting",176000.0],
    PARAMETER["False_Northing",176000.0],
    PARAMETER["Central_Meridian",80.77171111111112],
    PARAMETER["Scale_Factor",1.0],
    PARAMETER["Latitude_Of_Origin",7.000480277777778],
    UNIT["Yard_Indian_1937",0.91439523]
]

Frequently Asked Questions

How do I add ESRI:102064 to GeoServer?

Add the following definition to your GeoServer configuration:

102064=PROJCS["Kandawala_Ceylon_Belt_Indian_Yards_1937",GEOGCS["GCS_Kandawala",DATUM["D_Kandawala",SPHEROID["Everest_Adjustment_1937",6377276.345,300.8017]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",176000.0],PARAMETER["False_Northing",176000.0],PARAMETER["Central_Meridian",80.77171111111112],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",7.000480277777778],UNIT["Yard_Indian_1937",0.91439523]]
Read the full GeoServer guide →

How do I add ESRI:102064 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102064, 'ESRI', 102064, '+proj=tmerc +ellps=evrst30 +units=ind-yd +x_0=160933.56048 +y_0=160933.56048 +lon_0=80d46''18.16"E +lat_0=7d0''1.729"N +k_0=1.0 +towgs84=-97.0,787.0,86.0 +no_defs', 'PROJCS["Kandawala_Ceylon_Belt_Indian_Yards_1937",GEOGCS["GCS_Kandawala",DATUM["D_Kandawala",SPHEROID["Everest_Adjustment_1937",6377276.345,300.8017]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",176000.0],PARAMETER["False_Northing",176000.0],PARAMETER["Central_Meridian",80.77171111111112],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",7.000480277777778],UNIT["Yard_Indian_1937",0.91439523]]');
Read the full PostGIS guide →

How do I add ESRI:102064 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+ellps=evrst30"
  "+units=ind-yd"
  "+x_0=160933.56048"
  "+y_0=160933.56048"
  "+lon_0=80d46'18.16"E"
  "+lat_0=7d0'1.729"N"
  "+k_0=1.0"
  "+towgs84=-97.0,787.0,86.0"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:102064 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:102064", "+proj=tmerc +ellps=evrst30 +units=ind-yd +x_0=160933.56048 +y_0=160933.56048 +lon_0=80d46'18.16"E +lat_0=7d0'1.729"N +k_0=1.0 +towgs84=-97.0,787.0,86.0 +no_defs");
Read the full Proj4js guide →