EPSG:CODE

ESRI:102069 EMEP 150 Kilometer Grid

Projected · Europe

Export Formats

OGC WKT
PROJCS[
    "EMEP_150_Kilometer_Grid",
    GEOGCS[
        "GCS_Sphere_EMEP",
        DATUM["D_Sphere_EMEP",SPHEROID["Sphere_EMEP",6370000.0,0.0]],
        PRIMEM["Greenwich",0.0],
        UNIT["Degree",0.0174532925199433]
    ],
    PROJECTION["Stereographic_North_Pole"],
    PARAMETER["False_Easting",3.0],
    PARAMETER["False_Northing",37.0],
    PARAMETER["Central_Meridian",-32.0],
    PARAMETER["Standard_Parallel_1",60.0],
    UNIT["150_Kilometers",150000.0]
]

Frequently Asked Questions

How do I add ESRI:102069 to GeoServer?

Add the following definition to your GeoServer configuration:

102069=PROJCS["EMEP_150_Kilometer_Grid",GEOGCS["GCS_Sphere_EMEP",DATUM["D_Sphere_EMEP",SPHEROID["Sphere_EMEP",6370000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Stereographic_North_Pole"],PARAMETER["False_Easting",3.0],PARAMETER["False_Northing",37.0],PARAMETER["Central_Meridian",-32.0],PARAMETER["Standard_Parallel_1",60.0],UNIT["150_Kilometers",150000.0]]
Read the full GeoServer guide →

How do I add ESRI:102069 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102069, 'ESRI', 102069, '+proj=stere +R=6370000.0 +to_meter=150000.0 +x_0=450000.0 +y_0=5550000.0 +lon_0=32dW +lat_0=90dN +lat_ts=60dN +k_0=1.0 +no_defs', 'PROJCS["EMEP_150_Kilometer_Grid",GEOGCS["GCS_Sphere_EMEP",DATUM["D_Sphere_EMEP",SPHEROID["Sphere_EMEP",6370000.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Stereographic_North_Pole"],PARAMETER["False_Easting",3.0],PARAMETER["False_Northing",37.0],PARAMETER["Central_Meridian",-32.0],PARAMETER["Standard_Parallel_1",60.0],UNIT["150_Kilometers",150000.0]]');
Read the full PostGIS guide →

How do I add ESRI:102069 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=stere"
  "+R=6370000.0"
  "+to_meter=150000.0"
  "+x_0=450000.0"
  "+y_0=5550000.0"
  "+lon_0=32dW"
  "+lat_0=90dN"
  "+lat_ts=60dN"
  "+k_0=1.0"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:102069 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:102069", "+proj=stere +R=6370000.0 +to_meter=150000.0 +x_0=450000.0 +y_0=5550000.0 +lon_0=32dW +lat_0=90dN +lat_ts=60dN +k_0=1.0 +no_defs");
Read the full Proj4js guide →