Skip to content
transform

Convert EPSG:3414 to EPSG:24500

Online coordinate converter from SVY21 / Singapore TM (EPSG:3414) to Kertau 1968 / Singapore Grid (EPSG:24500). Enter your source coordinates and get the result instantly. All transformations happen in your browser — no data is sent to any server.

Direct link to this transformation: epsgtransform.com/transform/epsg-3414-to-epsg-24500

The EPSG dataset defines official transformation parameters for the reverse direction. See Kertau 1968 / Singapore Grid to SVY21 / Singapore TM — the parameters are invertible.

Convert EPSG:3414 to EPSG:24500 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

transformer = Transformer.from_crs("EPSG:3414", "EPSG:24500", always_xy=True)
x, y = transformer.transform(-73.9857, 40.7484)
print(x, y)

Source: EPSG:3414SVY21 / Singapore TM

projected system measured in linear units (typically metres) · Area of use: Singapore

+proj=tmerc +lat_0=1.36666666666667 +lon_0=103.833333333333 +k=1 +x_0=28001.642 +y_0=38744.572 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs +type=crs
More about EPSG:3414

Target: EPSG:24500Kertau 1968 / Singapore Grid

projected system measured in linear units (typically metres) · Area of use: Singapore

+proj=cass +lat_0=1.28764666666667 +lon_0=103.853002222222 +x_0=30000 +y_0=30000 +ellps=evrst48 +towgs84=-11,851,5,0,0,0,0 +units=m +no_defs +type=crs
More about EPSG:24500

Frequently asked questions

How accurate is converting SVY21 / Singapore TM to Kertau 1968 / Singapore Grid?
Projection-only conversions are accurate to floating-point precision. If a datum shift is involved, browser-based tools use Helmert parameters which are accurate to roughly 1-5 m; for surveying-grade work apply the official grid-shift transformation in a desktop GIS.
Does my data leave the browser when I use this converter?
No. All coordinate transformations are computed locally in your browser using proj4js. The coordinates you enter are never transmitted to any server.
Need the reverse? Convert EPSG:24500 to EPSG:3414