ESRI:102038 — The World From Space
Projected · World
Export Formats
OGC WKT
PROJCS[
"The_World_From_Space",
GEOGCS[
"GCS_Sphere_ARC_INFO",
DATUM["D_Sphere_ARC_INFO",SPHEROID["Sphere_ARC_INFO",6370997.0,0.0]],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]
],
PROJECTION["Orthographic"],
PARAMETER["False_Easting",0.0],
PARAMETER["False_Northing",0.0],
PARAMETER["Longitude_Of_Center",-72.5333333334],
PARAMETER["Latitude_Of_Center",42.5333333333],
UNIT["Meter",1.0]
]Frequently Asked Questions
How do I add ESRI:102038 to GeoServer?
Add the following definition to your GeoServer configuration:
102038=PROJCS["The_World_From_Space",GEOGCS["GCS_Sphere_ARC_INFO",DATUM["D_Sphere_ARC_INFO",SPHEROID["Sphere_ARC_INFO",6370997.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Orthographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",-72.5333333334],PARAMETER["Latitude_Of_Center",42.5333333333],UNIT["Meter",1.0]] Read the full GeoServer guide →
How do I add ESRI:102038 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102038, 'ESRI', 102038, '+proj=ortho +ellps=sphere +x_0=0.0 +y_0=0.0 +lon_0=72d32''0."W +lat_0=42d31''59."N +no_defs', 'PROJCS["The_World_From_Space",GEOGCS["GCS_Sphere_ARC_INFO",DATUM["D_Sphere_ARC_INFO",SPHEROID["Sphere_ARC_INFO",6370997.0,0.0]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Orthographic"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Longitude_Of_Center",-72.5333333334],PARAMETER["Latitude_Of_Center",42.5333333333],UNIT["Meter",1.0]]'); Read the full PostGIS guide →
How do I add ESRI:102038 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=ortho"
"+ellps=sphere"
"+x_0=0.0"
"+y_0=0.0"
"+lon_0=72d32'0."W"
"+lat_0=42d31'59."N"
"+no_defs"
END Read the full MapServer guide →
How do I use ESRI:102038 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("ESRI:102038", "+proj=ortho +ellps=sphere +x_0=0.0 +y_0=0.0 +lon_0=72d32'0."W +lat_0=42d31'59."N +no_defs"); Read the full Proj4js guide →