EPSG:CODE

EPSG:3165 NEA74 Noumea / Noumea Lambert

Projected · New Caledonia - Grande Terre - Noumea

Export Formats

OGC WKT
PROJCS[
    "NEA74 Noumea / Noumea Lambert",
    GEOGCS[
        "NEA74 Noumea",
        DATUM[
            "NEA74_Noumea",
            SPHEROID["International 1924",6378388,297],
            TOWGS84[-10.18,-350.43,291.37,0,0,0,0]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4644"]
    ],
    PROJECTION["Lambert_Conformal_Conic_2SP"],
    PARAMETER["latitude_of_origin",-22.26969175],
    PARAMETER["central_meridian",166.44242575],
    PARAMETER["standard_parallel_1",-22.24469175],
    PARAMETER["standard_parallel_2",-22.29469175],
    PARAMETER["false_easting",0.66],
    PARAMETER["false_northing",1.02],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","3165"]
]

Related Coordinate Systems

Available Transformations (9)

Transformations inherited from base CRS: EPSG:4644 (NEA74 Noumea)

Other CRS using NEA74 Noumea

Frequently Asked Questions

How do I add EPSG:3165 to GeoServer?

Add the following definition to your GeoServer configuration:

3165=PROJCS["NEA74 Noumea / Noumea Lambert",GEOGCS["NEA74 Noumea",DATUM["NEA74_Noumea",SPHEROID["International 1924",6378388,297],TOWGS84[-10.18,-350.43,291.37,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4644"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["latitude_of_origin",-22.26969175],PARAMETER["central_meridian",166.44242575],PARAMETER["standard_parallel_1",-22.24469175],PARAMETER["standard_parallel_2",-22.29469175],PARAMETER["false_easting",0.66],PARAMETER["false_northing",1.02],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","3165"]]
Read the full GeoServer guide →

How do I add EPSG:3165 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (3165, 'EPSG', 3165, '+proj=lcc +lat_0=-22.26969175 +lon_0=166.44242575 +lat_1=-22.24469175 +lat_2=-22.29469175 +x_0=0.66 +y_0=1.02 +ellps=intl +towgs84=-10.18,-350.43,291.37,0,0,0,0 +units=m +no_defs +type=crs', 'PROJCS["NEA74 Noumea / Noumea Lambert",GEOGCS["NEA74 Noumea",DATUM["NEA74_Noumea",SPHEROID["International 1924",6378388,297],TOWGS84[-10.18,-350.43,291.37,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4644"]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["latitude_of_origin",-22.26969175],PARAMETER["central_meridian",166.44242575],PARAMETER["standard_parallel_1",-22.24469175],PARAMETER["standard_parallel_2",-22.29469175],PARAMETER["false_easting",0.66],PARAMETER["false_northing",1.02],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","3165"]]');
Read the full PostGIS guide →

How do I add EPSG:3165 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+lat_0=-22.26969175"
  "+lon_0=166.44242575"
  "+lat_1=-22.24469175"
  "+lat_2=-22.29469175"
  "+x_0=0.66"
  "+y_0=1.02"
  "+ellps=intl"
  "+towgs84=-10.18,-350.43,291.37,0,0,0,0"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:3165 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:3165", "+proj=lcc +lat_0=-22.26969175 +lon_0=166.44242575 +lat_1=-22.24469175 +lat_2=-22.29469175 +x_0=0.66 +y_0=1.02 +ellps=intl +towgs84=-10.18,-350.43,291.37,0,0,0,0 +units=m +no_defs +type=crs");
Read the full Proj4js guide →