ESRI:103989 — Schwarzeck NamPower Lambert Millimeters
Projected · Namibia
Export Formats
OGC WKT
PROJCS[
"Schwarzeck_NamPower_Lambert_Millimeters",
GEOGCS[
"GCS_Schwarzeck",
DATUM[
"D_Schwarzeck",
SPHEROID["Bessel_Namibia",6377483.865280418,299.1528128]
],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]
],
PROJECTION["Lambert_Conformal_Conic"],
PARAMETER["False_Easting",0.0],
PARAMETER["False_Northing",0.0],
PARAMETER["Central_Meridian",19.0],
PARAMETER["Standard_Parallel_1",-20.0],
PARAMETER["Standard_Parallel_2",-26.0],
PARAMETER["Latitude_Of_Origin",-22.0],
UNIT["Millimeter",0.001]
]Frequently Asked Questions
How do I add ESRI:103989 to GeoServer?
Add the following definition to your GeoServer configuration:
103989=PROJCS["Schwarzeck_NamPower_Lambert_Millimeters",GEOGCS["GCS_Schwarzeck",DATUM["D_Schwarzeck",SPHEROID["Bessel_Namibia",6377483.865280418,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",19.0],PARAMETER["Standard_Parallel_1",-20.0],PARAMETER["Standard_Parallel_2",-26.0],PARAMETER["Latitude_Of_Origin",-22.0],UNIT["Millimeter",0.001]] Read the full GeoServer guide →
How do I add ESRI:103989 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (103989, 'ESRI', 103989, '+proj=lcc +ellps=bess_nam +units=mm +x_0=0.0 +y_0=0.0 +lon_0=19dE +lat_0=22dS +lat_1=20dS +lat_2=26dS +towgs84=616.0,97.0,-251.0 +no_defs', 'PROJCS["Schwarzeck_NamPower_Lambert_Millimeters",GEOGCS["GCS_Schwarzeck",DATUM["D_Schwarzeck",SPHEROID["Bessel_Namibia",6377483.865280418,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",19.0],PARAMETER["Standard_Parallel_1",-20.0],PARAMETER["Standard_Parallel_2",-26.0],PARAMETER["Latitude_Of_Origin",-22.0],UNIT["Millimeter",0.001]]'); Read the full PostGIS guide →
How do I add ESRI:103989 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=lcc"
"+ellps=bess_nam"
"+units=mm"
"+x_0=0.0"
"+y_0=0.0"
"+lon_0=19dE"
"+lat_0=22dS"
"+lat_1=20dS"
"+lat_2=26dS"
"+towgs84=616.0,97.0,-251.0"
"+no_defs"
END Read the full MapServer guide →
How do I use ESRI:103989 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("ESRI:103989", "+proj=lcc +ellps=bess_nam +units=mm +x_0=0.0 +y_0=0.0 +lon_0=19dE +lat_0=22dS +lat_1=20dS +lat_2=26dS +towgs84=616.0,97.0,-251.0 +no_defs"); Read the full Proj4js guide →