Skip to content
transform

Convert EPSG:4326 to EPSG:3414

Online coordinate converter from WGS 84 (EPSG:4326) to SVY21 / Singapore TM (EPSG:3414). 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-4326-to-epsg-3414

About converting WGS 84 to SVY21 / Singapore TM

Converting from WGS 84 (EPSG:4326) to SVY21 (EPSG:3414) is the standard transformation for working with Singapore Land Authority cadastral and government mapping data. SVY21 is a Transverse Mercator projection on the WGS 84 ellipsoid centred at 1°22'N 103°50'E with a tiny offset that keeps Singapore coordinates as positive metric values within a manageable range.

Because SVY21 uses the WGS 84 ellipsoid with only a small projection offset, the conversion is essentially a deterministic projection step — no datum shift is required for sub-metre accuracy.

Why people convert EPSG:4326 to EPSG:3414

  • Singapore Land Authority cadastre and surveying
  • OneMap and government GIS
  • Urban-development and infrastructure planning

Try it: Marina Bay Sands, Singapore

Input (EPSG:4326): 103.8606, 1.2834

Convert EPSG:4326 to EPSG:3414 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4326WGS 84

geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)

+proj=longlat +datum=WGS84 +no_defs +type=crs
More about EPSG:4326

Target: 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

Frequently asked questions

Is SVY21 a true datum or just a projection?
SVY21 uses the WGS 84 ellipsoid; the difference from EPSG:4326 is purely a projection (Transverse Mercator + small offset to keep coordinates positive over Singapore).
How accurate is converting WGS 84 to SVY21 / Singapore TM?
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:3414 to EPSG:4326