EPSG:CODE

EPSG:8948 SIRGAS-Chile 2010

Deprecated

Geographic 3D · Chile

Export Formats

PROJ.4
+proj=longlat +ellps=GRS80 +no_defs +type=crs

Available Transformations (1)

Transformations inherited from base CRS: EPSG:8947 (SIRGAS-Chile 2010)

Transformation Source → Target Accuracy (m)
8947 6934 0.1

Other CRS for CL (15)

Frequently Asked Questions

How do I add EPSG:8948 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (8948, 'EPSG', 8948, '+proj=longlat +ellps=GRS80 +no_defs +type=crs', '');
Read the full PostGIS guide →

How do I add EPSG:8948 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=longlat"
  "+ellps=GRS80"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:8948 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:8948", "+proj=longlat +ellps=GRS80 +no_defs +type=crs");
Read the full Proj4js guide →