Skip to content

Mgrs fix #157

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
147 changes: 147 additions & 0 deletions lib-external/gdal-2.2.3/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@


GDAL JNI shared libraries based on
- gdal-2.2.3 http://www.gdal.org/
- CFITSIO 3.420 https://heasarc.gsfc.nasa.gov/fitsio/
- openjpeg 2.3.0 http://www.openjpeg.org/
- PROJ.4 4.9.3 http://proj4.org/
- MrSID 9.5.4.4703 https://www.lizardtech.com/developer/home

Only 64 bit code was built for Linux and Windows.


Build instructions for GDAL JNI libraries

**** Windows ****

Prerequisites:
- Microsoft Visual Studio 2013
- swig 3.0.12
- cmake
- msys2
- Java JDK
- Apache ant
- 7zip

#- Unpack archives and apply patches (msys2 shell):

unzip -q archive/cfit3420.zip -d cfitsio
cd cfitsio
patch -b < ../patch.cfitsio
cd ..
tar xzf archive/proj-4.9.3.tar.gz
cd proj-4.9.3
patch -b < ../patch.proj
cd ..
tar xzf archive/openjpeg-2.3.0.tar.gz
unzip -q archive/MrSID/MrSID_DSDK-9.5.4.4703-win64-vc12.zip
tar xJf archive/gdal-2.2.3.tar.xz
cd gdal-2.2.3
patch -b -p0 < ../patch.gdal
cd ..

#- In a MSVS command window

Execute:
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_152
set JAVADOC=%JAVA_HOME%\bin\javadoc
set JAVAC=%JAVA_HOME%\bin\javac
set JAVA=%JAVA_HOME%\bin\java
set JAR=%JAVA_HOME%\bin\jar
set JAVA_INCLUDE="-I%JAVA_HOME%\include -I%JAVA_HOME%\include\win32"
set ANT_HOME=C:\apache-ant-1.10.1
set SWIG="C:\Program Files\swigwin-3.0.12\swig.exe"
set PATH=%PATH%;C:\Program Files\CMake\bin;C:\Program Files\swigwin-3.0.12;C:\Program Files\Java\jdk1.8.0_152\bin

#-- cfitsio build

cd cfigsio
mkdir build
cd build
cmake -G "Visual Studio 12 Win64" -DBUILD_SHARED_LIBS=OFF ..
cmake --build . --config Release

#-- openjpeg build

cd openjpeg-2.3.0
mkdir build
cd build
cmake -G "Visual Studio 12 Win64" -DBUILD_SHARED_LIBS:bool=off -DCMAKE_INSTALL_PREFIX=..\openjpeg -DBUILD_THIRDPARTY=YES -DCMAKE_BUILD_TYPE:string="Release" ..
cmake --build . --config Release
cmake --build . --target install --config Release

#-- proj.4 build

cd proj-4.9.3
nmake -f makefile.vc

#-- gdal build (see
https://trac.osgeo.org/gdal/wiki/GdalOgrInJavaBuildInstructions)

nmake /f makefile.vc

cd swig
nmake /f makefile.vc java

#-- javadoc: switch to msys2 shell

export PATH=$PATH:/c/Program\ Files/Java/jdk1.8.0_152/bin
cd gdal-2.2.3/swig/java
./make_doc.sh

# for some reason, Eclipse won't validate a zip javadoc file
# made by the 'zip' program.

cd java
/c/Program\ Files/7-Zip/7z a -r ../gdal-javadoc.zip *
cd ..
zip -r gdaljni-source.zip org

**** Linux ****

export LD_LIBRARY_PATH=$PWD/MrSID_DSDK-9.5.4.4703-rhel6.x86-64.gcc531/Raster_DSDK/lib:$PWD/MrSID_DSDK-9.5.4.4703-rhel6.x86-64.gcc531/Lidar_DSDK/lib

-- cfitsio build

` unzip -q archive/cfit3420.zip -d cfitsio
cd cfitsio
patch -b --binary < ../patch.cfitsio
mkdir build
cd build

cmake -G "Unix Makefiles" -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=../cfitsio -DCMAKE_C_FLAGS="-fPIC -O2" ..
# use -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON to see compile line
cmake --build . --config Release
cmake --build . --target install --config Release

#-- proj.4 build

cd ../..
tar xzf archive/proj-4.9.3.tar.gz
cd proj-4.9.3
./configure
make

#-- openjpeg build

tar xzf archive/openjpeg-2.3.0.tar.gz
cd openjpeg-2.3.0
mkdir build
cd build
cmake -G "Unix Makefiles" -DBUILD_SHARED_LIBS:bool=off -DCMAKE_C_FLAGS="-fPIC -O3" -DCMAKE_INSTALL_PREFIX=../openjpeg -DBUILD_THIRDPARTY=YES -DCMAKE_BUILD_TYPE:string="Release" ..
cmake --build . --config Release
cmake --build . --target install --config Release

#-- gdal build

tar xf archive/MrSID_DSDK-9.5.4.4703-rhel6.x86-64.gcc531.tar.gz

tar xJf archive/gdal-2.2.3.tar.xz
cd gdal-2.2.3

./configure --without-libtool --with-cfitsio=$PWD/../cfitsio/cfitsio --with-png=internal --with-libz=internal --with-pcraster=internal --with-pcidsk=internal --with-libtiff=internal --with-geotiff=internal --with-jpeg=internal --with-gif=internal --with-qhull=internal --with-libjson-c=internal --with-mrsid=$PWD/../MrSID_DSDK-9.5.4.4703-rhel6.x86-64.gcc531/Raster_DSDK --with-jp2mrsid=yes --with-mrsid_lidar=$PWD/../MrSID_DSDK-9.5.4.4703-rhel6.x86-64.gcc531/Lidar_DSDK --with-openjpeg=$PWD/../openjpeg-2.3.0/openjpeg --with-static-proj4=$PWD/../proj-4.9.3/src/.libs/libproj.a --with-java=/usr/lib/jvm/java-8-oracle
=
make
cd swig/java
make
Binary file added lib-external/gdal-2.2.3/apps-linux-x86_64.tar.xz
Binary file not shown.
Binary file added lib-external/gdal-2.2.3/apps-win-x86_64.tar.xz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added lib-external/gdal-2.2.3/archive/cfit3420.zip
Binary file not shown.
Binary file added lib-external/gdal-2.2.3/archive/gdal-2.2.3.tar.xz
Binary file not shown.
Binary file not shown.
Binary file not shown.
119 changes: 119 additions & 0 deletions lib-external/gdal-2.2.3/formats-linux.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
Supported Formats:
VRT -raster- (rw+v): Virtual Raster
DERIVED -raster- (ro): Derived datasets using VRT pixel functions
GTiff -raster- (rw+vs): GeoTIFF
NITF -raster- (rw+vs): National Imagery Transmission Format
RPFTOC -raster- (rovs): Raster Product Format TOC format
ECRGTOC -raster- (rovs): ECRG TOC format
HFA -raster- (rw+v): Erdas Imagine Images (.img)
SAR_CEOS -raster- (rov): CEOS SAR Image
CEOS -raster- (rov): CEOS Image
JAXAPALSAR -raster- (rov): JAXA PALSAR Product Reader (Level 1.1/1.5)
GFF -raster- (rov): Ground-based SAR Applications Testbed File Format (.gff)
ELAS -raster- (rw+v): ELAS
AIG -raster- (rov): Arc/Info Binary Grid
AAIGrid -raster- (rwv): Arc/Info ASCII Grid
GRASSASCIIGrid -raster- (rov): GRASS ASCII Grid
SDTS -raster- (rov): SDTS Raster
DTED -raster- (rwv): DTED Elevation Raster
PNG -raster- (rwv): Portable Network Graphics
JPEG -raster- (rwv): JPEG JFIF
MEM -raster- (rw+): In Memory Raster
JDEM -raster- (rov): Japanese DEM (.mem)
GIF -raster- (rwv): Graphics Interchange Format (.gif)
BIGGIF -raster- (rov): Graphics Interchange Format (.gif)
ESAT -raster- (rov): Envisat Image Format
FITS -raster- (rw+): Flexible Image Transport System
BSB -raster- (rov): Maptech BSB Nautical Charts
XPM -raster- (rwv): X11 PixMap Format
BMP -raster- (rw+v): MS Windows Device Independent Bitmap
DIMAP -raster- (rov): SPOT DIMAP
AirSAR -raster- (rov): AirSAR Polarimetric Image
RS2 -raster- (ros): RadarSat 2 XML Product
SAFE -raster- (rov): Sentinel-1 SAR SAFE Product
PCIDSK -raster,vector- (rw+v): PCIDSK Database File
PCRaster -raster- (rw+): PCRaster Raster File
ILWIS -raster- (rw+v): ILWIS Raster Map
SGI -raster- (rw+): SGI Image File Format 1.0
SRTMHGT -raster- (rwv): SRTMHGT File Format
Leveller -raster- (rw+): Leveller heightfield
Terragen -raster- (rw+): Terragen heightfield
ISIS3 -raster- (rw+v): USGS Astrogeology ISIS cube (Version 3)
ISIS2 -raster- (rw+v): USGS Astrogeology ISIS cube (Version 2)
PDS -raster- (rov): NASA Planetary Data System
VICAR -raster- (rov): MIPL VICAR file
TIL -raster- (rov): EarthWatch .TIL
ERS -raster- (rw+v): ERMapper .ers Labelled
L1B -raster- (rovs): NOAA Polar Orbiter Level 1b Data Set
FIT -raster- (rwv): FIT Image
GRIB -raster- (rov): GRIdded Binary (.grb)
MrSID -raster- (rov): Multi-resolution Seamless Image Database (MrSID)
JP2MrSID -raster- (rov): MrSID JPEG2000
MG4Lidar -raster- (ro): MrSID Generation 4 / Lidar (.sid)
RMF -raster- (rw+v): Raster Matrix Format
MSGN -raster- (ro): EUMETSAT Archive native (.nat)
RST -raster- (rw+v): Idrisi Raster A.1
INGR -raster- (rw+v): Intergraph Raster
GSAG -raster- (rwv): Golden Software ASCII Grid (.grd)
GSBG -raster- (rw+v): Golden Software Binary Grid (.grd)
GS7BG -raster- (rw+v): Golden Software 7 Binary Grid (.grd)
COSAR -raster- (rov): COSAR Annotated Binary Matrix (TerraSAR-X)
TSX -raster- (rov): TerraSAR-X Product
COASP -raster- (ro): DRDC COASP SAR Processor Raster
R -raster- (rwv): R Object Data Store
MAP -raster- (rov): OziExplorer .MAP
KMLSUPEROVERLAY -raster- (rwv): Kml Super Overlay
PDF -raster,vector- (w+): Geospatial PDF
CALS -raster- (rw): CALS (Type 1)
SENTINEL2 -raster- (rovs): Sentinel 2
MRF -raster- (rw+v): Meta Raster Format
PNM -raster- (rw+v): Portable Pixmap Format (netpbm)
DOQ1 -raster- (rov): USGS DOQ (Old Style)
DOQ2 -raster- (rov): USGS DOQ (New Style)
GenBin -raster- (rov): Generic Binary (.hdr Labelled)
PAux -raster- (rw+): PCI .aux Labelled
MFF -raster- (rw+v): Vexcel MFF Raster
MFF2 -raster- (rw+): Vexcel MFF2 (HKV) Raster
FujiBAS -raster- (ro): Fuji BAS Scanner Image
GSC -raster- (rov): GSC Geogrid
FAST -raster- (rov): EOSAT FAST Format
BT -raster- (rw+v): VTP .bt (Binary Terrain) 1.3 Format
LAN -raster- (rw+v): Erdas .LAN/.GIS
CPG -raster- (ro): Convair PolGASP
IDA -raster- (rw+v): Image Data and Analysis
NDF -raster- (rov): NLAPS Data Format
EIR -raster- (rov): Erdas Imagine Raw
DIPEx -raster- (rov): DIPEx
LCP -raster- (rwv): FARSITE v.4 Landscape File (.lcp)
GTX -raster- (rw+v): NOAA Vertical Datum .GTX
LOSLAS -raster- (rov): NADCON .los/.las Datum Grid Shift
NTv2 -raster- (rw+vs): NTv2 Datum Grid Shift
CTable2 -raster- (rw+v): CTable2 Datum Grid Shift
ACE2 -raster- (rov): ACE2
SNODAS -raster- (rov): Snow Data Assimilation System
KRO -raster- (rw+v): KOLOR Raw
ROI_PAC -raster- (rw+v): ROI_PAC raster
RRASTER -raster- (rov): R Raster
ENVI -raster- (rw+v): ENVI .hdr Labelled
EHdr -raster- (rw+v): ESRI .hdr Labelled
ISCE -raster- (rw+v): ISCE raster
ARG -raster- (rwv): Azavea Raster Grid format
RIK -raster- (rov): Swedish Grid RIK (.rik)
USGSDEM -raster- (rwv): USGS Optional ASCII DEM (and CDED)
GXF -raster- (ro): GeoSoft Grid Exchange Format
NWT_GRD -raster- (rw+v): Northwood Numeric Grid Format .grd/.tab
NWT_GRC -raster- (rov): Northwood Classified Grid Format .grc/.tab
ADRG -raster- (rw+vs): ARC Digitized Raster Graphics
SRP -raster- (rovs): Standard Raster Product (ASRP/USRP)
BLX -raster- (rwv): Magellan topo (.blx)
SAGA -raster- (rw+v): SAGA GIS Binary Grid (.sdat)
XYZ -raster- (rwv): ASCII Gridded XYZ
HF2 -raster- (rwv): HF2/HFZ heightfield raster
OZI -raster- (rov): OziExplorer Image File
CTG -raster- (rov): USGS LULC Composite Theme Grid
E00GRID -raster- (rov): Arc/Info Export E00 GRID
ZMap -raster- (rwv): ZMap Plus Grid
NGSGEOID -raster- (rov): NOAA NGS Geoid Height Grids
IRIS -raster- (rov): IRIS data (.PPI, .CAPPi etc)
PRF -raster- (rov): Racurs PHOTOMOD PRF
CAD -raster,vector- (rovs): AutoCAD Driver
120 changes: 120 additions & 0 deletions lib-external/gdal-2.2.3/formats-win.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
Supported Formats:
VRT -raster- (rw+v): Virtual Raster
DERIVED -raster- (ro): Derived datasets using VRT pixel functions
GTiff -raster- (rw+vs): GeoTIFF
NITF -raster- (rw+vs): National Imagery Transmission Format
RPFTOC -raster- (rovs): Raster Product Format TOC format
ECRGTOC -raster- (rovs): ECRG TOC format
HFA -raster- (rw+v): Erdas Imagine Images (.img)
SAR_CEOS -raster- (rov): CEOS SAR Image
CEOS -raster- (rov): CEOS Image
JAXAPALSAR -raster- (rov): JAXA PALSAR Product Reader (Level 1.1/1.5)
GFF -raster- (rov): Ground-based SAR Applications Testbed File Format (.gff)
ELAS -raster- (rw+v): ELAS
AIG -raster- (rov): Arc/Info Binary Grid
AAIGrid -raster- (rwv): Arc/Info ASCII Grid
GRASSASCIIGrid -raster- (rov): GRASS ASCII Grid
SDTS -raster- (rov): SDTS Raster
DTED -raster- (rwv): DTED Elevation Raster
PNG -raster- (rwv): Portable Network Graphics
JPEG -raster- (rwv): JPEG JFIF
MEM -raster- (rw+): In Memory Raster
JDEM -raster- (rov): Japanese DEM (.mem)
GIF -raster- (rwv): Graphics Interchange Format (.gif)
BIGGIF -raster- (rov): Graphics Interchange Format (.gif)
ESAT -raster- (rov): Envisat Image Format
FITS -raster- (rw+): Flexible Image Transport System
BSB -raster- (rov): Maptech BSB Nautical Charts
XPM -raster- (rwv): X11 PixMap Format
BMP -raster- (rw+v): MS Windows Device Independent Bitmap
DIMAP -raster- (rov): SPOT DIMAP
AirSAR -raster- (rov): AirSAR Polarimetric Image
RS2 -raster- (ros): RadarSat 2 XML Product
SAFE -raster- (rov): Sentinel-1 SAR SAFE Product
PCIDSK -raster,vector- (rw+v): PCIDSK Database File
PCRaster -raster- (rw+): PCRaster Raster File
ILWIS -raster- (rw+v): ILWIS Raster Map
SGI -raster- (rw+): SGI Image File Format 1.0
SRTMHGT -raster- (rwv): SRTMHGT File Format
Leveller -raster- (rw+): Leveller heightfield
Terragen -raster- (rw+): Terragen heightfield
ISIS3 -raster- (rw+v): USGS Astrogeology ISIS cube (Version 3)
ISIS2 -raster- (rw+v): USGS Astrogeology ISIS cube (Version 2)
PDS -raster- (rov): NASA Planetary Data System
VICAR -raster- (rov): MIPL VICAR file
TIL -raster- (rov): EarthWatch .TIL
ERS -raster- (rw+v): ERMapper .ers Labelled
L1B -raster- (rovs): NOAA Polar Orbiter Level 1b Data Set
FIT -raster- (rwv): FIT Image
GRIB -raster- (rov): GRIdded Binary (.grb)
MrSID -raster- (rov): Multi-resolution Seamless Image Database (MrSID)
JP2MrSID -raster- (rov): MrSID JPEG2000
MG4Lidar -raster- (ro): MrSID Generation 4 / Lidar (.sid)
RMF -raster- (rw+v): Raster Matrix Format
MSGN -raster- (ro): EUMETSAT Archive native (.nat)
RST -raster- (rw+v): Idrisi Raster A.1
INGR -raster- (rw+v): Intergraph Raster
GSAG -raster- (rwv): Golden Software ASCII Grid (.grd)
GSBG -raster- (rw+v): Golden Software Binary Grid (.grd)
GS7BG -raster- (rw+v): Golden Software 7 Binary Grid (.grd)
COSAR -raster- (rov): COSAR Annotated Binary Matrix (TerraSAR-X)
TSX -raster- (rov): TerraSAR-X Product
COASP -raster- (ro): DRDC COASP SAR Processor Raster
R -raster- (rwv): R Object Data Store
MAP -raster- (rov): OziExplorer .MAP
KMLSUPEROVERLAY -raster- (rwv): Kml Super Overlay
PDF -raster,vector- (w+): Geospatial PDF
CALS -raster- (rw): CALS (Type 1)
SENTINEL2 -raster- (rovs): Sentinel 2
MRF -raster- (rw+v): Meta Raster Format
PNM -raster- (rw+v): Portable Pixmap Format (netpbm)
DOQ1 -raster- (rov): USGS DOQ (Old Style)
DOQ2 -raster- (rov): USGS DOQ (New Style)
GenBin -raster- (rov): Generic Binary (.hdr Labelled)
PAux -raster- (rw+): PCI .aux Labelled
MFF -raster- (rw+v): Vexcel MFF Raster
MFF2 -raster- (rw+): Vexcel MFF2 (HKV) Raster
FujiBAS -raster- (ro): Fuji BAS Scanner Image
GSC -raster- (rov): GSC Geogrid
FAST -raster- (rov): EOSAT FAST Format
BT -raster- (rw+v): VTP .bt (Binary Terrain) 1.3 Format
LAN -raster- (rw+v): Erdas .LAN/.GIS
CPG -raster- (ro): Convair PolGASP
IDA -raster- (rw+v): Image Data and Analysis
NDF -raster- (rov): NLAPS Data Format
EIR -raster- (rov): Erdas Imagine Raw
DIPEx -raster- (rov): DIPEx
LCP -raster- (rwv): FARSITE v.4 Landscape File (.lcp)
GTX -raster- (rw+v): NOAA Vertical Datum .GTX
LOSLAS -raster- (rov): NADCON .los/.las Datum Grid Shift
NTv2 -raster- (rw+vs): NTv2 Datum Grid Shift
CTable2 -raster- (rw+v): CTable2 Datum Grid Shift
ACE2 -raster- (rov): ACE2
SNODAS -raster- (rov): Snow Data Assimilation System
KRO -raster- (rw+v): KOLOR Raw
ROI_PAC -raster- (rw+v): ROI_PAC raster
RRASTER -raster- (rov): R Raster
ENVI -raster- (rw+v): ENVI .hdr Labelled
EHdr -raster- (rw+v): ESRI .hdr Labelled
ISCE -raster- (rw+v): ISCE raster
ARG -raster- (rwv): Azavea Raster Grid format
RIK -raster- (rov): Swedish Grid RIK (.rik)
USGSDEM -raster- (rwv): USGS Optional ASCII DEM (and CDED)
GXF -raster- (ro): GeoSoft Grid Exchange Format
NWT_GRD -raster- (rw+v): Northwood Numeric Grid Format .grd/.tab
NWT_GRC -raster- (rov): Northwood Classified Grid Format .grc/.tab
ADRG -raster- (rw+vs): ARC Digitized Raster Graphics
SRP -raster- (rovs): Standard Raster Product (ASRP/USRP)
BLX -raster- (rwv): Magellan topo (.blx)
SAGA -raster- (rw+v): SAGA GIS Binary Grid (.sdat)
XYZ -raster- (rwv): ASCII Gridded XYZ
HF2 -raster- (rwv): HF2/HFZ heightfield raster
OZI -raster- (rov): OziExplorer Image File
CTG -raster- (rov): USGS LULC Composite Theme Grid
E00GRID -raster- (rov): Arc/Info Export E00 GRID
ZMap -raster- (rwv): ZMap Plus Grid
NGSGEOID -raster- (rov): NOAA NGS Geoid Height Grids
IRIS -raster- (rov): IRIS data (.PPI, .CAPPi etc)
PRF -raster- (rov): Racurs PHOTOMOD PRF
DB2ODBC -raster,vector- (rw+): IBM DB2 Spatial Database
CAD -raster,vector- (rovs): AutoCAD Driver
Binary file added lib-external/gdal-2.2.3/gdal-javadoc.zip
Binary file not shown.
Binary file added lib-external/gdal-2.2.3/gdal.jar
Binary file not shown.
138 changes: 138 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/GDALLogoBW.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
126 changes: 126 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/GDALLogoColor.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
126 changes: 126 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/GDALLogoGS.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
157 changes: 157 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/compdcs.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
"COORD_REF_SYS_CODE","COORD_REF_SYS_NAME","CMPD_HORIZCRS_CODE","CMPD_VERTCRS_CODE","SHOW_CRS","DEPRECATED"
3901,"KKJ / Finland Uniform Coordinate System + N60 height",2393,5717,1,0
3902,"ETRS89 / TM35FIN(N,E) + N60 height",5048,5717,1,0
3903,"ETRS89 / TM35FIN(N,E) + N2000 height",5048,3900,1,0
4097,"ETRS89 / DKTM1 + DVR90 height",4093,5799,1,0
4098,"ETRS89 / DKTM2 + DVR90 height",4094,5799,1,0
4099,"ETRS89 / DKTM3 + DVR90 height",4095,5799,1,0
4100,"ETRS89 / DKTM4 + DVR90 height",4096,5799,1,0
5318,"ETRS89 / Faroe TM + FVR09 height",5316,5317,1,0
5498,"NAD83 + NAVD88 height",4269,5703,1,0
5499,"NAD83(HARN) + NAVD88 height",4152,5703,1,0
5500,"NAD83(NSRS2007) + NAVD88 height",4759,5703,1,0
5554,"ETRS89 / UTM zone 31N + DHHN92 height",25831,5783,1,0
5555,"ETRS89 / UTM zone 32N + DHHN92 height",25832,5783,1,0
5556,"ETRS89 / UTM zone 33N + DHHN92 height",25833,5783,1,0
5598,"FEH2010 / Fehmarnbelt TM + FCSVR10 height",5596,5597,1,0
5628,"SWEREF99 + RH2000 height",4619,5613,1,0
5698,"RGF93 / Lambert-93 + NGF-IGN69 height",2154,5720,1,0
5699,"RGF93 / Lambert-93 + NGF-IGN78 height",2154,5721,1,0
5707,"NTF (Paris) / Lambert zone I + NGF-IGN69 height",27571,5720,1,0
5708,"NTF (Paris) / Lambert zone IV + NGF-IGN78 height",27574,5721,1,0
5832,"DB_REF / 3-degree Gauss-Kruger zone 2 (E-N) + DHHN92 height",5682,5783,1,0
5833,"DB_REF / 3-degree Gauss-Kruger zone 3 (E-N) + DHHN92 height",5683,5783,1,0
5834,"DB_REF / 3-degree Gauss-Kruger zone 4 (E-N) + DHHN92 height",5684,5783,1,0
5835,"DB_REF / 3-degree Gauss-Kruger zone 5 (E-N) + DHHN92 height",5685,5783,1,0
5845,"SWEREF99 TM + RH2000 height",3006,5613,1,0
5846,"SWEREF99 12 00 + RH2000 height",3007,5613,1,0
5847,"SWEREF99 13 30 + RH2000 height",3008,5613,1,0
5848,"SWEREF99 15 00 + RH2000 height",3009,5613,1,0
5849,"SWEREF99 16 30 + RH2000 height",3010,5613,1,0
5850,"SWEREF99 18 00 + RH2000 height",3011,5613,1,0
5851,"SWEREF99 14 15 + RH2000 height",3012,5613,1,0
5852,"SWEREF99 15 45 + RH2000 height",3013,5613,1,0
5853,"SWEREF99 17 15 + RH2000 height",3014,5613,1,0
5854,"SWEREF99 18 45 + RH2000 height",3015,5613,1,0
5855,"SWEREF99 20 15 + RH2000 height",3016,5613,1,0
5856,"SWEREF99 21 45 + RH2000 height",3017,5613,1,0
5857,"SWEREF99 23 15 + RH2000 height",3018,5613,1,0
5942,"ETRS89 + NN2000 height",4258,5941,1,0
5945,"ETRS89 / NTM zone 5 + NN2000 height",5105,5941,1,0
5946,"ETRS89 / NTM zone 6 + NN2000 height",5106,5941,1,0
5947,"ETRS89 / NTM zone 7 + NN2000 height",5107,5941,1,0
5948,"ETRS89 / NTM zone 8 + NN2000 height",5108,5941,1,0
5949,"ETRS89 / NTM zone 9 + NN2000 height",5109,5941,1,0
5950,"ETRS89 / NTM zone 10 + NN2000 height",5110,5941,1,0
5951,"ETRS89 / NTM zone 11 + NN2000 height",5111,5941,1,0
5952,"ETRS89 / NTM zone 12 + NN2000 height",5112,5941,1,0
5953,"ETRS89 / NTM zone 13 + NN2000 height",5113,5941,1,0
5954,"ETRS89 / NTM zone 14 + NN2000 height",5114,5941,1,0
5955,"ETRS89 / NTM zone 15 + NN2000 height",5115,5941,1,0
5956,"ETRS89 / NTM zone 16 + NN2000 height",5116,5941,1,0
5957,"ETRS89 / NTM zone 17 + NN2000 height",5117,5941,1,0
5958,"ETRS89 / NTM zone 18 + NN2000 height",5118,5941,1,0
5959,"ETRS89 / NTM zone 19 + NN2000 height",5119,5941,1,0
5960,"ETRS89 / NTM zone 20 + NN2000 height",5120,5941,1,0
5961,"ETRS89 / NTM zone 21 + NN2000 height",5121,5941,1,0
5962,"ETRS89 / NTM zone 22 + NN2000 height",5122,5941,1,0
5963,"ETRS89 / NTM zone 23 + NN2000 height",5123,5941,1,0
5964,"ETRS89 / NTM zone 24 + NN2000 height",5124,5941,1,0
5965,"ETRS89 / NTM zone 25 + NN2000 height",5125,5941,1,0
5966,"ETRS89 / NTM zone 26 + NN2000 height",5126,5941,1,0
5967,"ETRS89 / NTM zone 27 + NN2000 height",5127,5941,1,0
5968,"ETRS89 / NTM zone 28 + NN2000 height",5128,5941,1,0
5969,"ETRS89 / NTM zone 29 + NN2000 height",5129,5941,1,0
5970,"ETRS89 / NTM zone 30 + NN2000 height",5130,5941,1,0
5971,"ETRS89 / UTM zone 31 + NN2000 height",25831,5941,1,0
5972,"ETRS89 / UTM zone 32 + NN2000 height",25832,5941,1,0
5973,"ETRS89 / UTM zone 33 + NN2000 height",25833,5941,1,0
5974,"ETRS89 / UTM zone 34 + NN2000 height",25834,5941,1,0
5975,"ETRS89 / UTM zone 35 + NN2000 height",25835,5941,1,0
5976,"ETRS89 / UTM zone 36 + NN2000 height",25836,5941,1,0
6144,"ETRS89 + NN54 height",4258,5776,1,0
6145,"ETRS89 / NTM zone 5 + NN54 height",5105,5776,1,0
6146,"ETRS89 / NTM zone 6 + NN54 height",5106,5776,1,0
6147,"ETRS89 / NTM zone 7 + NN54 height",5107,5776,1,0
6148,"ETRS89 / NTM zone 8 + NN54 height",5108,5776,1,0
6149,"ETRS89 / NTM zone 9 + NN54 height",5109,5776,1,0
6150,"ETRS89 / NTM zone 10 + NN54 height",5110,5776,1,0
6151,"ETRS89 / NTM zone 11 + NN54 height",5111,5776,1,0
6152,"ETRS89 / NTM zone 12 + NN54 height",5112,5776,1,0
6153,"ETRS89 / NTM zone 13 + NN54 height",5113,5776,1,0
6154,"ETRS89 / NTM zone 14 + NN54 height",5114,5776,1,0
6155,"ETRS89 / NTM zone 15 + NN54 height",5115,5776,1,0
6156,"ETRS89 / NTM zone 16 + NN54 height",5116,5776,1,0
6157,"ETRS89 / NTM zone 17 + NN54 height",5117,5776,1,0
6158,"ETRS89 / NTM zone 18 + NN54 height",5118,5776,1,0
6159,"ETRS89 / NTM zone 19 + NN54 height",5119,5776,1,0
6160,"ETRS89 / NTM zone 20 + NN54 height",5120,5776,1,0
6161,"ETRS89 / NTM zone 21 + NN54 height",5121,5776,1,0
6162,"ETRS89 / NTM zone 22 + NN54 height",5122,5776,1,0
6163,"ETRS89 / NTM zone 23 + NN54 height",5123,5776,1,0
6164,"ETRS89 / NTM zone 24 + NN54 height",5124,5776,1,0
6165,"ETRS89 / NTM zone 25 + NN54 height",5125,5776,1,0
6166,"ETRS89 / NTM zone 26 + NN54 height",5126,5776,1,0
6167,"ETRS89 / NTM zone 27 + NN54 height",5127,5776,1,0
6168,"ETRS89 / NTM zone 28 + NN54 height",5128,5776,1,0
6169,"ETRS89 / NTM zone 29 + NN54 height",5129,5776,1,0
6170,"ETRS89 / NTM zone 30 + NN54 height",5130,5776,1,0
6171,"ETRS89 / UTM zone 31 + NN54 height",25831,5776,1,0
6172,"ETRS89 / UTM zone 32 + NN54 height",25832,5776,1,0
6173,"ETRS89 / UTM zone 33 + NN54 height",25833,5776,1,0
6174,"ETRS89 / UTM zone 34 + NN54 height",25834,5776,1,0
6175,"ETRS89 / UTM zone 35 + NN54 height",25835,5776,1,0
6176,"ETRS89 / UTM zone 36 + NN54 height",25836,5776,1,0
6190,"Belge 1972 / Belgian Lambert 72 + Ostend height",31370,5710,1,0
6349,"NAD83(2011) + NAVD88 height",6318,5703,1,0
6649,"NAD83(CSRS) + CGVD2013 height",4617,6647,1,0
6650,"NAD83(CSRS) / UTM zone 7N + CGVD2013 height",3154,6647,1,0
6651,"NAD83(CSRS) / UTM zone 8N + CGVD2013 height",3155,6647,1,0
6652,"NAD83(CSRS) / UTM zone 9N + CGVD2013 height",3156,6647,1,0
6653,"NAD83(CSRS) / UTM zone 10N + CGVD2013 height",3157,6647,1,0
6654,"NAD83(CSRS) / UTM zone 11N + CGVD2013 height",2955,6647,1,0
6655,"NAD83(CSRS) / UTM zone 12N + CGVD2013 height",2956,6647,1,0
6656,"NAD83(CSRS) / UTM zone 13N + CGVD2013 height",2957,6647,1,0
6657,"NAD83(CSRS) / UTM zone 14N + CGVD2013 height",3158,6647,1,0
6658,"NAD83(CSRS) / UTM zone 15N + CGVD2013 height",3159,6647,1,0
6659,"NAD83(CSRS) / UTM zone 16N + CGVD2013 height",3160,6647,1,0
6660,"NAD83(CSRS) / UTM zone 17N + CGVD2013 height",2958,6647,1,0
6661,"NAD83(CSRS) / UTM zone 18N + CGVD2013 height",2959,6647,1,0
6662,"NAD83(CSRS) / UTM zone 19N + CGVD2013 height",2960,6647,1,0
6663,"NAD83(CSRS) / UTM zone 20N + CGVD2013 height",2961,6647,1,0
6664,"NAD83(CSRS) / UTM zone 21N + CGVD2013 height",2962,6647,1,0
6665,"NAD83(CSRS) / UTM zone 22N + CGVD2013 height",3761,6647,1,0
6696,"JGD2000 + JGD2000 (vertical) height",4612,6694,1,0
6697,"JGD2011 + JGD2011 (vertical) height",6668,6695,1,0
6700,"Tokyo + JSLD72 height",4301,6693,1,0
6871,"WGS 84 / Pseudo-Mercator + EGM2008 geoid height",3857,3855,1,1
6893,"WGS 84 / World Mercator + EGM2008 height",3395,3855,1,0
6917,"SVY21 + SHD height",4757,6916,1,0
6927,"SVY21 / Singapore TM + SHD height",3414,6916,1,0
7400,"NTF (Paris) + NGF IGN69 height",4807,5720,1,0
7401,"NTF (Paris) / France II + NGF Lallemand",27582,5719,1,1
7402,"NTF (Paris) / France II + NGF IGN69",27582,5720,1,1
7403,"NTF (Paris) / France III + NGF IGN69",27583,5720,1,1
7404,"RT90 + RH70 height",4124,5718,1,0
7405,"OSGB 1936 / British National Grid + ODN height",27700,5701,1,0
7406,"NAD27 + NGVD29 height",4267,5702,1,0
7407,"NAD27 / Texas North + NGVD29 height",32037,5702,1,0
7408,"RD/NAP",4289,5709,1,1
7409,"ETRS89 + EVRF2000 height",4258,5730,1,0
7410,PSHD93,4134,5724,1,0
7411,"NTF (Paris) / Lambert zone II + NGF Lallemand height",27572,5719,1,0
7412,"NTF (Paris) / Lambert zone II + NGF IGN69",27572,5719,1,1
7413,"NTF (Paris) / Lambert zone III + NGF IGN69",27573,5719,1,1
7414,"Tokyo + JSLD69 height",4301,5723,1,0
7415,"Amersfoort / RD New + NAP height",28992,5709,1,0
7416,"ETRS89 / UTM zone 32N + DVR90 height",25832,5799,1,0
7417,"ETRS89 / UTM zone 33N + DVR90 height",25833,5799,1,0
7418,"ETRS89 / Kp2000 Jutland + DVR90 height",2196,5799,1,0
7419,"ETRS89 / Kp2000 Zealand + DVR90 height",2197,5799,1,0
7420,"ETRS89 / Kp2000 Bornholm + DVR90 height",2198,5799,1,0
7421,"NTF (Paris) / Lambert zone II + NGF-IGN69 height",27572,5720,1,0
7422,"NTF (Paris) / Lambert zone III + NGF-IGN69 height",27573,5720,1,0
7423,"ETRS89 + EVRF2007 height",4258,5621,1,0
7954,"Astro DOS 71 / UTM zone 30S + Jamestown 1971 height",7878,7888,1,0
7955,"St. Helena Tritan / UTM zone 30S + Tritan 2011 height",7883,7889,1,0
7956,"SHMG2015 + SHVD2015 height",7887,7890,1,0
278 changes: 278 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/coordinate_axis.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,278 @@
coord_sys_code,coord_axis_name_code,coord_axis_orientation,coord_axis_abbreviation,uom_code,coord_axis_order
1024,9906,east,M,9001,1
1024,9907,north,P,9001,2
1025,9906,North along 130°W,X,9001,1
1025,9907,North along 140°E,Y,9001,2
1026,9906,South along 90°E,E,9001,1
1026,9907,South along 180°E,N,9001,2
1027,9906,North along 90°E,E,9001,1
1027,9907,North along 0°E,N,9001,2
1028,9906,east,E,9037,1
1028,9907,north,N,9037,2
1029,9906,east,E,9002,2
1029,9907,north,N,9002,1
1030,9904,up,H,9002,1
1031,9907,north,Y,9001,1
1031,9908,west,X,9001,2
1032,9904,up,z,9001,3
1032,9918,east,x,9001,1
1032,9919,north,y,9001,2
1033,9920,J-axis plus 90°,I,1024,1
1033,9921,See associated operation,J,1024,2
1034,9920,J-axis minus 90°,I,1024,1
1034,9921,See associated operation,J,1024,2
1035,9906,South along 180°E,X,9001,1
1035,9907,South along 90°W,Y,9001,2
1036,9906,South along 57°E,X,9001,1
1036,9907,South along 147°E,Y,9001,2
1037,9906,South along 108°E,X,9001,1
1037,9907,South along 162°W,Y,9001,2
1038,9906,South along 165°W,X,9001,1
1038,9907,South along 75°W,Y,9001,2
1039,9906,east,E,9002,1
1039,9907,north,N,9002,2
1040,1024,Ahead,x,9001,1
1040,1025,Starboard,y,9001,2
1040,1026,Upward,z,9001,3
1041,1024,Ahead,x,9001,1
1041,1025,Starboard,y,9001,2
1041,1027,Downward,z,9001,3
1042,1024,Ahead,y,9001,2
1042,1025,Starboard,x,9001,1
1042,1026,Upward,z,9001,3
1043,9905,down,D,9003,1
1044,9906,North along 90°W,E,9001,2
1044,9907,North along 180°E,N,9001,1
1045,1024,Ahead,y,9001,2
1045,1025,Starboard,x,9001,1
1045,1027,Downward,z,9001,3
4400,9906,east,E,9001,1
4400,9907,north,N,9001,2
4401,9906,east,E,9062,1
4401,9907,north,N,9062,2
4402,9906,east,E,9042,1
4402,9907,north,N,9042,2
4403,9906,east,E,9005,1
4403,9907,north,N,9005,2
4404,9906,east,E,9094,1
4404,9907,north,N,9094,2
4405,9906,east,E,9041,1
4405,9907,north,N,9041,2
4406,9906,east,X,9036,1
4406,9907,north,Y,9036,2
4407,9906,east,E,9039,1
4407,9907,north,N,9039,2
4408,9906,east,E,9084,1
4408,9907,north,N,9084,2
4409,9906,east,E,9040,1
4409,9907,north,N,9040,2
4410,9906,east,E,9301,1
4410,9907,north,N,9301,2
4460,9906,South along 90°E.,E,9001,1
4460,9907,South along 180°E,N,9001,2
4461,9929,up,W,9001,3
4461,9930,east,U,9001,1
4461,9931,north,V,9001,2
4462,9906,South along 180°W,X,9001,1
4462,9907,South along 90°W,Y,9001,2
4463,9906,South along 100°E,X,9001,1
4463,9907,South along 170°W,Y,9001,2
4464,9906,South along 90°W,X,9001,1
4464,9907,South along 0°E,Y,9001,2
4465,9906,South along 50°E,X,9001,1
4465,9907,South along 140°E,Y,9001,2
4466,9906,South along 10°W,X,9001,1
4466,9907,South along 80°E,Y,9001,2
4467,9906,South along 60°W,X,9001,1
4467,9907,South along 30°E,Y,9001,2
4468,9906,South along 45°E,X,9001,1
4468,9907,South along 135°E,Y,9001,2
4469,9906,South along 90°E,X,9001,1
4469,9907,South along 180°E,Y,9001,2
4470,9906,North along 90°E,X,9001,1
4470,9907,North along 0°E,Y,9001,2
4471,9906,North along 75°W,E,9001,1
4471,9907,North along 165°W,N,9001,2
4472,9906,North along 60°W,E,9001,1
4472,9907,North along 150°W,N,9001,2
4473,9906,North along 45°W,E,9001,1
4473,9907,North along 135°W,N,9001,2
4474,9906,North along 15°W,E,9001,1
4474,9907,North along 105°W,N,9001,2
4475,9906,North along 0°E,E,9001,1
4475,9907,North along 90°W,N,9001,2
4476,9906,North along 15°E,E,9001,1
4476,9907,North along 75°W,N,9001,2
4477,9906,North along 45°E,E,9001,1
4477,9907,North along 45°W,N,9001,2
4478,9906,North along 60°E,E,9001,1
4478,9907,North along 30°W,N,9001,2
4479,9906,North along 75°E,E,9001,1
4479,9907,North along 15°W,N,9001,2
4480,9906,North along 105°E,E,9001,1
4480,9907,North along 15°E,N,9001,2
4481,9906,North along 120°E,E,9001,1
4481,9907,North along 30°E,N,9001,2
4482,9906,North along 135°E,E,9001,1
4482,9907,North along 45°E,N,9001,2
4483,9906,North along 165°E,E,9001,1
4483,9907,North along 75°E,N,9001,2
4484,9906,North along 180°E,E,9001,1
4484,9907,North along 90°E,N,9001,2
4485,9906,North along 165°W,E,9001,1
4485,9907,North along 105°E,N,9001,2
4486,9906,North along 135°W,E,9001,1
4486,9907,North along 135°E,N,9001,2
4487,9906,North along 120°W,E,9001,1
4487,9907,North along 150°E,N,9001,2
4488,9906,North along 105°W,E,9001,1
4488,9907,North along 165°E,N,9001,2
4489,9906,North along 160°E,E,9001,1
4489,9907,North along 70°E,N,9001,2
4490,9906,North along 90°E,E,9001,1
4490,9907,North along 0°E,N,9001,2
4491,9907,north,N,9001,2
4491,9908,west,W,9001,1
4492,9913,North along 130°W,X,9001,1
4492,9914,North along 140°E,Y,9001,2
4493,9906,South along 90°E,E,9001,2
4493,9907,South along 180°E,N,9001,1
4494,9906,North along 90°E,E,9001,2
4494,9907,North along 0°E,N,9001,1
4495,9906,east,X,9002,1
4495,9907,north,Y,9002,2
4496,9906,east,E(X),9001,1
4496,9907,north,N(Y),9001,2
4497,9906,east,X,9003,1
4497,9907,north,Y,9003,2
4498,9906,east,Y,9001,1
4498,9907,north,X,9001,2
4499,9906,east,X,9001,1
4499,9907,north,Y,9001,2
4500,9906,east,E,9001,2
4500,9907,north,N,9001,1
4501,9907,north,N,9001,1
4501,9908,west,E,9001,2
4502,9906,east,E,9005,2
4502,9907,north,N,9005,1
4530,9906,east,Y,9001,2
4530,9907,north,X,9001,1
4531,9906,east,y,9001,2
4531,9907,north,x,9001,1
4532,9906,east,X,9001,2
4532,9907,north,Y,9001,1
4533,9906,east,Y,9098,2
4533,9907,north,X,9098,1
4534,9906,east,none,9001,2
4534,9907,north,none,9001,1
6401,9901,north,Lat,9108,1
6401,9902,east,Long,9108,2
6401,9903,up,h,9001,3
6402,9901,north,Lat,9108,1
6402,9902,east,Long,9108,2
6403,9901,north,Lat,9105,1
6403,9902,east,Lon,9105,2
6404,9926,north,Lat,9122,1
6404,9927,east,Long,9122,2
6404,9928,up,R,9001,3
6405,9901,north,Lat,9102,1
6405,9902,east,Long,9102,2
6406,9901,north,Lat,9116,1
6406,9902,east,Long,9116,2
6407,9901,north,Lat,9117,1
6407,9902,east,Long,9117,2
6408,9901,north,Lat,9115,1
6408,9902,east,Long,9115,2
6409,9901,north,Lat,9118,1
6409,9902,east,Long,9118,2
6410,9901,north,Lat,9119,1
6410,9902,east,Long,9119,2
6411,9901,north,Lat,9107,1
6411,9902,east,Long,9107,2
6412,9901,north,Lat,9120,1
6412,9902,east,Long,9120,2
6413,9901,north,Lat,9102,1
6413,9902,east,Long,9102,2
6413,9903,up,h,9001,3
6414,9901,north,Lat,9116,1
6414,9902,east,Long,9116,2
6414,9903,up,h,9001,3
6415,9901,north,Lat,9117,1
6415,9902,east,Long,9117,2
6415,9903,up,h,9001,3
6416,9901,north,Lat,9115,1
6416,9902,east,Long,9115,2
6416,9903,up,h,9001,3
6417,9901,north,Lat,9118,1
6417,9902,east,Long,9118,2
6417,9903,up,h,9001,3
6418,9901,north,Lat,9119,1
6418,9902,east,Long,9119,2
6418,9903,up,h,9001,3
6419,9901,north,Lat,9107,1
6419,9902,east,Long,9107,2
6419,9903,up,h,9001,3
6420,9901,north,Lat,9120,1
6420,9902,east,Long,9120,2
6420,9903,up,h,9001,3
6421,9901,north,Lat,9105,1
6421,9902,east,Lon,9105,2
6421,9903,up,h,9001,3
6422,9901,north,Lat,9122,1
6422,9902,east,Lon,9122,2
6423,9901,north,Lat,9122,1
6423,9902,east,Lon,9122,2
6423,9903,up,h,9001,3
6424,9901,north,Lat,9122,2
6424,9902,east,Lon,9122,1
6425,9901,north,Lat,9105,2
6425,9902,east,Lon,9105,1
6426,9901,north,Lat,9122,2
6426,9902,east,Lon,9122,1
6426,9903,up,h,9001,3
6427,9901,north,Lat,9105,2
6427,9902,east,Lon,9105,1
6427,9903,up,h,9001,3
6428,9901,north,Lat,9101,1
6428,9902,east,Lon,9101,2
6429,9901,north,Lat,9101,2
6429,9902,east,Lon,9101,1
6430,9901,north,Lat,9101,1
6430,9902,east,Lon,9101,2
6430,9903,up,h,9001,3
6431,9901,north,Lat,9101,2
6431,9902,east,Lon,9101,1
6431,9903,up,h,9001,3
6495,9905,down,D,9002,1
6496,9904,up,H,9095,1
6497,9904,up,H,9003,1
6498,9905,down,D,9001,1
6499,9904,up,H,9001,1
6500,9910,Geocentre > equator/0°E,X,9001,1
6500,9911,Geocentre > equator/90°E,Y,9001,2
6500,9912,Geocentre > north pole,Z,9001,3
6501,9908,west,Y,9001,2
6501,9909,south,X,9001,1
6502,9908,west,Y,9031,1
6502,9909,south,X,9031,2
6503,9908,west,Y,9001,1
6503,9909,south,X,9001,2
6504,9918,northeast,e,9001,2
6504,9919,northwest,n,9001,1
6505,9913,northwest,n,9001,1
6505,9914,northeast,e,9001,2
6506,9913,east-south-east,I,9205,1
6506,9914,north-north-east,J,9204,2
6507,9913,north,X,9001,1
6507,9914,west,Y,9001,2
6508,9920,east south east,I,9208,2
6508,9921,north north east,J,9209,1
6509,9908,west,M,9001,2
6509,9909,south,P,9001,1
6510,9918,northeast,x,9001,1
6510,9919,northwest,y,9001,2
6511,9922,Along receiver lines,I,9208,1
6511,9923,Across receiver lines,J,9209,2
6512,9916,up,z,9001,3
6512,9918,east,x,9001,1
6512,9919,north,y,9001,2
48 changes: 48 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/cubewerx_extra.wkt
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#
# This file derived from the public_coordsys.txt file distributed with
# CubeSTOR by CubeWerx (http://www.cubewerx.com)
#
# OGC-defined "AUTO" codes
# http://www.digitalearth.gov/wmt/auto.html
#
# Hmm, not really much point to including these as they require extra
# substitutions. See the importFromWMSAUTO() if you need these.
#
#42001,PROJCS["WGS 84 / Auto UTM%s",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["central_meridian","%.16g"],PARAMETER["latitude_of_origin",0],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing","%.16g"],UNIT["Meter",1],AUTHORITY["EPSG","42001"]]
#42002,PROJCS["WGS 84 / Auto Tr. Mercator",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["central_meridian","%.16g"],PARAMETER["latitude_of_origin",0],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing","%.16g"],UNIT["Meter",1],AUTHORITY["EPSG","42002"]]
#42003,PROJCS["WGS 84 / Auto Orthographic",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Orthographic"],PARAMETER["central_meridian","%.16g"],PARAMETER["latitude_of_origin","%.16g"],UNIT["Meter",1],AUTHORITY["EPSG","42003"]]
#42004,PROJCS["WGS 84 / Auto Equirectangular",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Equirectangular"],PARAMETER["central_meridian",0],PARAMETER["latitude_of_origin",0],PARAMETER["standard_parallel_1","%.16g"],UNIT["Meter",1],AUTHORITY["EPSG","42004"]]
#
# OGC-defined extended codes (41000--41999)
# see http://www.digitalearth.gov/wmt/auto.html
#
41001,PROJCS["WGS84 / Simple Mercator",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Mercator_1SP"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1],AUTHORITY["EPSG","41001"]]
#
# CubeWerx-defined extended codes (42100--42199)
#
42101,PROJCS["WGS 84 / LCC Canada",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["central_meridian",-95.0],PARAMETER["latitude_of_origin",0],PARAMETER["standard_parallel_1",49.0],PARAMETER["standard_parallel_2",77.0],PARAMETER["false_easting",0.0],PARAMETER["false_northing",-8000000.0],UNIT["Meter",1],AUTHORITY["EPSG","42101"]]
#EPSG:42102,"PROJCS[\"NAD83 / BC Albers\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS_1980\",6378137,298.257222101]],PRIMEM[\"Greenwich\",0],UNIT[\"Decimal_Degree\",0.0174532925199433]],PROJECTION[\"Albers_conic_equal_area\"],PARAMETER[\"central_meridian\",-126.0],PARAMETER[\"latitude_of_origin\",45],PARAMETER[\"standard_parallel_1\",50.0],PARAMETER[\"standard_parallel_2\",58.5],PARAMETER[\"false_easting\",1000000.0],PARAMETER[\"false_northing\",0],UNIT[\"Meter\",1]]"
42103,PROJCS["WGS 84 / LCC USA",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS_1978",6378135,298.26]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["central_meridian",-100.0],PARAMETER["latitude_of_origin",0],PARAMETER["standard_parallel_1",33.0],PARAMETER["standard_parallel_2",45.0],PARAMETER["false_easting",0.0],PARAMETER["false_northing",0.0],UNIT["Meter",1],AUTHORITY["EPSG","42103"]]
42104,PROJCS["NAD83 / MTM zone 8 Quebec",GEOGCS["GRS80",DATUM["GRS_1980",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-73.5],PARAMETER["scale_factor",0.9999],PARAMETER["false_easting",304800],PARAMETER["false_northing",0],UNIT["Meter",1],AUTHORITY["EPSG","42104"]]
42105,PROJCS["WGS84 / Merc NorthAm",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Mercator_1SP"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-96],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1],AUTHORITY["EPSG","42105"]]
42106,PROJCS["WGS84 / Lambert Azim Mozambique",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["Sphere_radius_6370997_m",6370997,0]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Lambert_Azimuthal_equal_area"],PARAMETER["latitude_of_origin",5],PARAMETER["central_meridian",20],PARAMETER["standard_parallel_1",5],PARAMETER["standard_parallel_2",5],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1],AUTHORITY["EPSG","42106"]]
#
# CubeWerx-customer definitions (42300--42399)
#
42301,PROJCS["NAD27 / Polar Stereographic / CM=-98",GEOGCS["NAD27",DATUM["North_American_Datum_1927",SPHEROID["Clarke 1866",6378206.4,294.978698213901]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Stereographic"],PARAMETER["latitude_of_origin",90],PARAMETER["central_meridian",-98.0],PARAMETER["standard_parallel_1",90],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1],AUTHORITY["EPSG","42301"]]
42302,PROJCS["JapanOrtho.09 09",GEOGCS["Lon/Lat.Tokyo Datum",DATUM["Tokyo Datum",SPHEROID["anon",6377397.155,299.15281310608]],PRIMEM["Greenwich",0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["Central_Meridian",139.833333333333],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Latitude_of_Origin",36],PARAMETER["Scale_Factor",0.9999],UNIT["Meter",1],AUTHORITY["EPSG","42302"]]
42303,PROJCS["NAD83 / Albers NorthAm",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Albers_conic_equal_area"],PARAMETER["central_meridian",-96.0],PARAMETER["latitude_of_origin",23],PARAMETER["standard_parallel_1",29.5],PARAMETER["standard_parallel_2",45.5],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1],AUTHORITY["EPSG","42303"]]
42304,PROJCS["NAD83 / NRCan LCC Canada",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["central_meridian",-95.0],PARAMETER["latitude_of_origin",49.0],PARAMETER["standard_parallel_1",49.0],PARAMETER["standard_parallel_2",77.0],PARAMETER["false_easting",0.0],PARAMETER["false_northing",0.0],UNIT["Meter",1],AUTHORITY["EPSG","42304"]]
42305,PROJCS["France_II",GEOGCS["GCS_NTF_Paris",DATUM["Nouvelle_Triangulation_Francaise",SPHEROID["Clarke_1880_IGN",6378249.2,293.46602]],PRIMEM["Paris",2.337229166666667],UNIT["degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["False_Easting",600000],PARAMETER["False_Northing",2200000],PARAMETER["Central_Meridian",0],PARAMETER["Standard_Parallel_1",45.898918964419],PARAMETER["Standard_Parallel_2",47.696014502038],PARAMETER["Latitude_Of_Origin",46.8],UNIT["Meter",1],AUTHORITY["EPSG","42305"]]
42306,PROJCS["NAD83/QC_LCC",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["central_meridian",-68.5],PARAMETER["latitude_of_origin",44],PARAMETER["standard_parallel_1",46],PARAMETER["standard_parallel_2",60],PARAMETER["false_easting",0.0],PARAMETER["false_northing",0.0],UNIT["Meter",1],AUTHORITY["EPSG","42306"]]
42307,PROJCS["NAD83 / Texas Central - feet",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS 1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["standard_parallel_1",31.8833333333333],PARAMETER["standard_parallel_2",30.1166666666667],PARAMETER["latitude_of_origin",29.6666666666667],PARAMETER["central_meridian",-100.333333333333],PARAMETER["false_easting",2296583.33333333333333],PARAMETER["false_northing",9842500],UNIT["US_Foot",0.30480060960121924],AUTHORITY["EPSG","42307"]]
42308,PROJCS["NAD27 / California Albers",GEOGCS["NAD27",DATUM["North_American_Datum_1927",SPHEROID["Clarke 1866",6378206.4,294.978698213901]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Albers_conic_equal_area"],PARAMETER["central_meridian",-120.0],PARAMETER["latitude_of_origin",0],PARAMETER["standard_parallel_1",34],PARAMETER["standard_parallel_2",40.5],PARAMETER["false_easting",0],PARAMETER["false_northing",-4000000],UNIT["Meter",1],AUTHORITY["EPSG","42308"]]
42309,PROJCS["NAD 83 / LCC Canada AVHRR-2",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS 1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["central_meridian",-95.0],PARAMETER["latitude_of_origin",0],PARAMETER["standard_parallel_1",49.0],PARAMETER["standard_parallel_2",77.0],PARAMETER["false_easting",0.0],PARAMETER["false_northing",0.0],UNIT["Meter",1],AUTHORITY["EPSG","42309"]]
42310,PROJCS["WGS84+GRS80 / Mercator",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["GRS 1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Mercator_1SP"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1],AUTHORITY["EPSG","42310"]]
42311,PROJCS["NAD83 / LCC Statcan",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Decimal_Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["central_meridian",-91.866667],PARAMETER["latitude_of_origin",63.390675],PARAMETER["standard_parallel_1",49],PARAMETER["standard_parallel_2",77],PARAMETER["false_easting",6200000],PARAMETER["false_northing",3000000],UNIT["Meter",1],AUTHORITY["EPSG","42311"]]
#
# BC-Forestry/NFIS code
#
100001,GEOGCS["NAD83 / NFIS Seconds",DATUM["North_American_Datum_1983",SPHEROID["GRS 1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Decimal_Second",4.84813681109536e-06],AUTHORITY["EPSG","100001"]]
100002,PROJCS["NAD83 / Austin",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS 1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic_2SP"],PARAMETER["standard_parallel_1",31.8833333333333],PARAMETER["standard_parallel_2",30.1166666666667],PARAMETER["latitude_of_origin",29.6666666666667],PARAMETER["central_meridian",-100.333333333333],PARAMETER["false_easting",2296583.333333],PARAMETER["false_northing",9842500.0000000],UNIT["Meter",1],AUTHORITY["EPSG","100002"]]
900913,PROJCS["Google Maps Global Mercator",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Mercator_2SP"],PARAMETER["standard_parallel_1",0],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1],EXTENSION["PROJ4","+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs"]]
836 changes: 836 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/datum_shift.csv

Large diffs are not rendered by default.

Binary file added lib-external/gdal-2.2.3/gdal_data/default.rsc
Binary file not shown.
1,452 changes: 1,452 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/ecw_cs.wkt

Large diffs are not rendered by default.

55 changes: 55 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/ellipsoid.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
ellipsoid_code,ellipsoid_name,semi_major_axis,uom_code,inv_flattening,semi_minor_axis,ellipsoid_shape,remarks,information_source,data_source,revision_date,change_id,deprecated
1024,CGCS2000,6378137,9001,298.257222101,,1,"Defining parameters semi-major axis, flattening and angular velocity are same as for GRS 1980 (ellipsoid code 7019); GM = 3986004.4e8 m*m*m/s/s (from NASA 1986 Lageos determination).",Chinese Academy of Surveying and Mapping.,OGP,2009/11/12,2009.084,0
1025,GSK-2011,6378136.5,9001,298.2564151,,1,,"Parametry Zemli 1990 Reference Document, Military Topgraphic Department (VTU) of the General Staff of Armed Forces of the Russian Federation.",IOGP,2016/01/25,2015.055,0
7001,Airy 1830,6377563.396,9001,299.3249646,,1,"Original definition is a=20923713, b=20853810 feet of 1796. 1/f is given to 7 decimal places. For the 1936 retriangulation OSGB defines the relationship of 10 feet of 1796 to the International metre through ([10^0.48401603]/10) exactly = 0.3048007491...",Ordnance Survey of Great Britain.,OGP,2006/11/27,1998.321 1998.340 2006.932,0
7002,Airy Modified 1849,6377340.189,9001,299.3249646,,1,OSGB Airy 1830 figure (ellipsoid code 7001) rescaled by 0.999965 to best fit the scale of the 19th century primary triangulation of Ireland.,"""The Irish Grid - A Description of the Co-ordinate Reference System"" published by Ordnance Survey of Ireland, Dublin and Ordnance Survey of Northern Ireland, Belfast.",OGP,2003/06/27,1998.321 2002.622,0
7003,Australian National Spheroid,6378160,9001,298.25,,1,Based on the GRS 1967 figure but with 1/f taken to 2 decimal places exactly. The dimensions are also used as the GRS 1967 Modified ellipsoid (see code 7050).,"""Australian Map Grid Technical Manual""; National Mapping Council of Australia Special Publication #7; 1972",OGP,2008/08/11,2002.500 2008.017,0
7004,Bessel 1841,6377397.155,9001,299.1528128,,1,"Original Bessel definition is a=3272077.14 and b=3261139.33 toise. This used a weighted mean of values from several authors but did not account for differences in the length of the various toise: the ""Bessel toise"" is therefore of uncertain length.","US Army Map Service Technical Manual; 1943.",OGP,1999/04/22,1998.321 1998.340,0
7005,Bessel Modified,6377492.018,9001,299.1528128,,1,Used in Norway and also in Sweden with a 1mm increase in semi-major axis.,,OGP,1999/04/22,1998.321,0
7006,Bessel Namibia,6377483.865,9001,299.1528128,,1,a = 6377397.155 German legal metres. This is the same value as the Bessel 1841 figure (code 7004) but in different units. Used in Namibia.,"Chief Directorate: Surveys and Mapping, Mowbray, South Africa.",OGP,1999/04/22,1997.160,1
7007,Clarke 1858,20926348,9005,,20855233,1,"Clarke's 1858/II solution. Derived parameters: a = 6378293.645m using his 1865 ratio of 0.3047972654 feet per metre; 1/f = 294.26068… In Australia and Amoco Trinidad 1/f taken to two decimal places (294.26 exactly); elsewhere a and b used to derive 1/f.","""Ellipsoidisch Parameter der Erdfigur (1800-1950)"" by Georg Strasser.",OGP,2005/08/14,1999.700 2005.370,0
7008,Clarke 1866,6378206.4,9001,,6356583.8,1,Original definition a=20926062 and b=20855121 (British) feet. Uses Clarke's 1865 inch-metre ratio of 39.370432 to obtain metres. (Metric value then converted to US survey feet for use in the US and international feet for use in Cayman Islands).,"US Army Map Service Technical Manual No. 7; 1943.",OGP,2013/01/17,1998.340 2012.095,0
7009,Clarke 1866 Michigan,20926631.531,9003,,20855688.674,1,"Used for Michigan NAD27 State Plane zones. Radius = ellipsoid radius + 800 feet; this approximates the average elevation of the state. Derived parameter: 1/f = 294.97870",USGS Professional Paper #1395.,OGP,1995/06/02,1998.220 2013.020,1
7010,Clarke 1880 (Benoit),6378300.789,9001,,6356566.435,1,Adopts Clarke's values for a and b. Uses Benoit's 1895 ratio of 0.9143992 metres per yard to convert to metres.,,OGP,1995/06/02,,0
7011,Clarke 1880 (IGN),6378249.2,9001,,6356515,1,Adopts Clarke's values for a and b using his 1865 ratio of 39.370432 inches per metre to convert axes to metres.,,OGP,1998/04/16,1998.120,0
7012,Clarke 1880 (RGS),6378249.145,9001,293.465,,1,Adopts Clarke's values for a and 1/f. Adopts his 1865 ratio of 39.370432 inches per metre to convert semi-major axis to metres. Also known as Clarke Modified 1880.,"Empire Survey Review #32; 1939.",OGP,1995/06/02,,0
7013,Clarke 1880 (Arc),6378249.145,9001,293.4663077,,1,Adopts Clarke's value for a with derived 1/f. Uses his 1865 ratio of 39.370432 inch per metre to convert semi-major axis to metres.,"Chief Directorate: Surveys and Mapping, Mowbray, South Africa.",OGP,2001/06/05,2001.052,0
7014,Clarke 1880 (SGA 1922),6378249.2,9001,293.46598,,1,Used in Old French Triangulation (ATF). Uses Clarke's 1865 inch-metre ratio of 39.370432 to convert axes to metres.,,OGP,1995/06/02,,0
7015,Everest 1830 (1937 Adjustment),6377276.345,9001,300.8017,,1,Used for the 1937 readjustment of Indian triangulation. Clarke's 1865 Indian-British foot ratio (0.99999566) and Benoit's 1898 British inch-metre ratio (39.370113) rounded as 0.30479841 exactly and applied to Everest's 1830 definition taken as a and 1/f,"Survey of India professional paper #28; 1939",OGP,1996/10/18,1996.200,0
7016,Everest 1830 (1967 Definition),6377298.556,9001,300.8017,,1,Adopted 1967 for use in East Malaysia. Applies Sears 1922 inch-metre ratio of 39.370147 to Everest 1830 original definition of a and 1/f but with a taken to be in British rather than Indian feet.,,OGP,1995/06/02,,0
7018,Everest 1830 Modified,6377304.063,9001,300.8017,,1,Adopted 1967 for use in West Malaysia. Applies Benoit 1898 inch-metre ratio of 39.370113 to Everest 1830 original definition of a and 1/f but with a taken to be in British rather than Indian feet.,,OGP,1995/06/02,,0
7019,GRS 1980,6378137,9001,298.257222101,,1,"Adopted by IUGG 1979 Canberra. Inverse flattening is derived from geocentric gravitational constant GM = 3986005e8 m*m*m/s/s; dynamic form factor J2 = 108263e-8 and Earth's angular velocity = 7292115e-11 rad/s.","""Geodetic Reference System 1980"" by H. Moritz; Bulletin Geodesique",OGP,2013/08/23,1998.110 1998.320 2013.043,0
7020,Helmert 1906,6378200,9001,298.3,,1,Helmert 1906/III solution.,"""Ellipsoidisch Parameter der Erdfigur (1800-1950)"" by Georg Strasser",OGP,1995/06/02,,0
7021,Indonesian National Spheroid,6378160,9001,298.247,,1,Based on the GRS 1967 figure but with 1/f taken to 3 decimal places exactly.,Rais paper.,OGP,1995/06/02,,0
7022,International 1924,6378388,9001,297,,1,Adopted by IUGG 1924 in Madrid. Based on Hayford 1909/1910 figures. ,,OGP,1995/06/02,,0
7024,Krassowsky 1940,6378245,9001,298.3,,1,,,OGP,1995/06/02,,0
7025,NWL 9D,6378145,9001,298.25,,1,Used by Transit Precise Ephemeris between October 1971 and January 1987.,,OGP,1995/06/02,,0
7027,Plessis 1817,6376523,9001,308.64,,1,Rescaling of Delambre 1810 figure (a=6376985 m) to make meridional arc from equator to pole equal to 10000000 metres exactly. (Ref: Strasser).,"IGN Paris ""Constants d'Ellipsoides"" February 1972.",OGP,1995/06/02,,0
7028,Struve 1860,6378298.3,9001,294.73,,1,"Original definition of semi-major axis given as 3272539 toise. In ""Ellipsoidisch Parameter der Erdfigur (1800-1950)"" , Strasser suggests a conversion factor of 1.94903631 which gives a=6378297.337 metres.","""Geodesia y Cartografia Matematica"" by Fernando Martin Asin; ISBN 84-398-0248-X.",OGP,1998/11/11,1998.070 1998.340,0
7029,War Office,6378300,9001,296,,1,"In non-metric form, a=20926201 Gold Coast feet. DMA Technical Manual 8358.1 and data derived from this quotes value for semi-major axis as 6378300.58m: OGP recommends use of defined value 6378300m exactly.","Tables for the use of the Gold Coast Survey Department, 1935.",OGP,2009/10/29,2009.075,0
7030,WGS 84,6378137,9001,298.257223563,,1,"1/f derived from four defining parameters semi-major axis; C20 = -484.16685*10e-6; earth's angular velocity ? = 7292115e-11 rad/sec; gravitational constant GM = 3986005e8 m*m*m/s/s. In 1994 new GM = 3986004.418e8 m*m*m/s/s but a and 1/f retained.",DMA Technical Manual 8350.2-B,IOGP,2015/11/25,1998.320 2015.047,0
7031,GEM 10C,6378137,9001,298.257223563,,1,Used for GEM 10C Gravity Potential Model.,,OGP,1995/06/02,1998.320,0
7032,OSU86F,6378136.2,9001,298.257223563,,1,Used for OSU86 gravity potential (geoidal) model.,,OGP,1995/06/02,1998.320,0
7033,OSU91A,6378136.3,9001,298.257223563,,1,Used for OSU91 gravity potential (geoidal) model.,,OGP,1995/06/02,1998.320,0
7034,Clarke 1880,20926202,9005,,20854895,1,Clarke gave a and b and also 1/f=293.465 (to 3 decimal places exactly). In the 19th century b was normally given as the second defining parameter.,"""Ellipsoidisch Parameter der Erdfigur (1800-1950)"" by Georg Strasser.",OGP,2008/06/26,2008.057,0
7035,Sphere,6371000,9001,,6371000,0,Authalic sphere. 1/f is infinite. Superseded by GRS 1980 authalic sphere (code 7047).,,OGP,1995/06/02,,1
7036,GRS 1967,6378160,9001,298.247167427,,1,"Adopted by IUGG 1967 Lucerne. 1/f given is derived from geocentric gravitational constant (GM)= 398603e9 m*m*m/s/s; dynamic form factor (J2) = 0.0010827 and Earth's angular velocity w = 7.2921151467e-5 rad/s. See also GRS 1967 Modified (code 7050).","""Geodetic Reference System 1967""; International Association of Geodesy special publication number 3; August 1971.",OGP,2011/02/25,1996.090 1997.252 1998.320 2002.500 2011.016,0
7041,Average Terrestrial System 1977,6378135,9001,298.257,,1,,New Brunswick Geographic Information Corporation land and water information standards manual,OGP,1997/07/22,1998.321,0
7042,Everest (1830 Definition),20922931.8,9080,,20853374.58,1,Everest gave a and b to 2 decimal places and also 1/f=300.8017 (to 4 decimal places exactly). In the 19th century b was normally given as the second defining parameter.,"""Ellipsoidisch Parameter der Erdfigur (1800-1950)"" by Georg Strasser",OGP,2008/06/26,1997.231 2008.057,0
7043,WGS 72,6378135,9001,298.26,,1,,,OGP,1999/04/22,1999.030,0
7044,Everest 1830 (1962 Definition),6377301.243,9001,300.8017255,,1,Used by Pakistan since metrication. Clarke's 1865 Indian foot-British foot ratio (0.99999566) and his 1865 British inch-metre ratio (39.369971) rounded with slight error as 1 Ind ft = 0.3047995m exactly and applied to Everest's 1830 definition of a & b.,,OGP,1999/10/20,,0
7045,Everest 1830 (1975 Definition),6377299.151,9001,300.8017255,,1,Used by India since metrication. Clarke's 1865 Indian foot-British foot ratio (0.99999566) and his 1865 British inch-metre ratio (39.369971) rounded as 1 Ind ft = 0.3047995m exactly applied to Everest's 1830 original definition taken as a and b.,,OGP,1999/10/20,,0
7046,Bessel Namibia (GLM),6377397.155,9031,299.1528128,,1,The semi-major axis has the same value as the Bessel 1841 ellipsoid (code 7004) but is in different units - German Legal Metres rather than International metres - hence a different size. a = 6377483.865 International metres. Used in Namibia.,"Chief Directorate: Surveys and Mapping, Mowbray, South Africa.",OGP,2007/09/21,2007.091,0
7047,GRS 1980 Authalic Sphere,6370997,9001,,6370997,0,"Authalic sphere derived from Clarke 1866 ellipsoid (code 7008). Deprecated as name and parameter values do not match; replaced by 7048.",OGP,OGP,2001/06/05,,1
7048,GRS 1980 Authalic Sphere,6371007,9001,,6371007,0,Authalic sphere derived from GRS 1980 ellipsoid (code 7019). (An authalic sphere is one with a surface area equal to the surface area of the ellipsoid). 1/f is infinite.,OGP,OGP,2001/06/25,,0
7049,IAG 1975,6378140,9001,298.257,,1,,"Chinese Sceience Bulletin, 2009, 54:2714-2721.",OGP,2009/11/24,2009.084,0
7050,GRS 1967 Modified,6378160,9001,298.25,,1,Based on the GRS 1967 figure (code 7036) but with 1/f taken to 2 decimal places exactly. Used with SAD69 and TWD67 datums. The dimensions are also used as the Australian National Spheroid (code 7003).,"""Geodetic Reference System 1967""; International Association of Geodesy special publication number 3; August 1971.",OGP,2008/08/11,2008.017,0
7051,Danish 1876,6377019.27,9001,300,,1,Semi-major axis originally given as 3271883.25 toise. Uses toise to French metre ratio of 1.94903631 to two decimal place precision. An alternative ratio with the German legal metre of 1.9490622 giving 6377104m has not been used in Danish work.,"Kort og Matrikelstyrelsen (KMS), Copenhagen.",OGP,2003/06/27,,0
7052,Clarke 1866 Authalic Sphere,6370997,9001,,6370997,0,Authalic sphere derived from Clarke 1866 ellipsoid (code 7008).,OGP,OGP,2004/04/27,,0
7053,Hough 1960,6378270,9001,297,,1,,DMA / NIMA / NGA TR8350.2,OGP,2006/01/26,,0
7054,PZ-90,6378136,9001,298.257839303,,1,"Earth's angular velocity ? = 7.292115e-5 rad/sec; gravitational constant GM = 3986004.418e8 m*m*m/s/s.","Parametry Zemli 1990 Reference Document, Military Topgraphic Department (VTU) of the General Staff of Armed Forces of the Russian Federation.",IOGP,2016/12/15,2015.055,0
7055,Clarke 1880 (international foot),20926202,9002,,20854895,1,Clark'es 1880 definition in feet assumed for the purposes of metric conversion to be international foot. a = 6378306.370…metres. 1/f derived from a and b = 293.4663077… Used in Fiji.,"Department of Lands and Survey, Fiji.",OGP,2006/07/14,,0
7056,Everest 1830 (RSO 1969),6377295.664,9001,300.8017,,1,Adopted for 1969 metrication of peninsula Malaysia RSO grid. Uses Sears 1922 yard-metre ratio truncated to 6 significant figures applied to Everest 1830 original definition of a and 1/f but with a taken to be in British rather than Indian feet.,Defence Geographic Centre,OGP,2006/07/24,,0
7057,International 1924 Authalic Sphere,6371228,9001,,6371228,0,Authalic sphere derived from International 1924 ellipsoid (code 7022).,OGP,OGP,2006/09/22,,0
7058,Hughes 1980,6378273,9001,,6356889.449,1,Used in US DMSP SSM/I microwave sensor processing software. Semi-minor axis derived from eccentricity=0.081816153. Semi-major axis (a) sometimes given as 3443.992nm which OGP suspects is a derived approximation. OGP conversion assumes 1nm=1852m exactly.,US National Snow and Ice Data Center,OGP,2006/09/22,,0
7059,Popular Visualisation Sphere,6378137,9001,,6378137,0,Sphere with radius equal to the semi-major axis of the GRS80 and WGS 84 ellipsoids. Used only for Web approximate mapping and visualisation. Not recognised by geodetic authorities.,Microsoft.,OGP,2008/03/14,2008.114,1
2 changes: 2 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/epsg.wkt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include esri_extra.wkt
include cubewerx_extra.wkt
631 changes: 631 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/esri_StatePlane_extra.wkt

Large diffs are not rendered by default.

144 changes: 144 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/esri_Wisconsin_extra.wkt

Large diffs are not rendered by default.

465 changes: 465 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/esri_extra.wkt

Large diffs are not rendered by default.

504 changes: 504 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/gcs.csv

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/gcs.override.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"COORD_REF_SYS_CODE","COORD_REF_SYS_NAME","DATUM_CODE","DATUM_NAME","GREENWICH_DATUM","UOM_CODE","ELLIPSOID_CODE","PRIME_MERIDIAN_CODE","SHOW_CRS","DEPRECATED","COORD_SYS_CODE","COORD_OP_CODE","COORD_OP_CODE_MULTI","COORD_OP_METHOD_CODE","DX","DY","DZ","RX","RY","RZ","DS"
#
# NOTICE: The master version of this file is in the libgeotiff subversion at:
#
# https://svn.osgeo.org/metacrs/geotiff/trunk/libgeotiff/csv/gcs.override.csv
#
# Do *not* change other copies without upstreaming the results to libgeotiff.
725 changes: 725 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/gdal_datum.csv

Large diffs are not rendered by default.

Binary file added lib-external/gdal-2.2.3/gdal_data/gdalicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
439 changes: 439 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/gdalvrt.xsd

Large diffs are not rendered by default.

164 changes: 164 additions & 0 deletions lib-external/gdal-2.2.3/gdal_data/geoccs.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
"COORD_REF_SYS_CODE","COORD_REF_SYS_NAME","DATUM_CODE","DATUM_NAME","GREENWICH_DATUM","UOM_CODE","ELLIPSOID_CODE","PRIME_MERIDIAN_CODE","SHOW_CRS","DEPRECATED","COORD_SYS_CODE"
3822,TWD97,1026,Taiwan Datum 1997,1026,9001,7019,8901,1,0,6500
3887,IGRS,1029,Iraqi Geospatial Reference System,1029,9001,7019,8901,1,0,6500
4000,MOLDREF99,1032,MOLDREF99,1032,9001,7019,8901,1,0,6500
4039,RGRDC 2005,1033,Reseau Geodesique de la RDC 2005,1033,9001,7019,8901,1,0,6500
4073,SREF98,1034,Serbian Reference Network 1998,1034,9001,7019,8901,1,0,6500
4079,REGCAN95,1035,Red Geodesica de Canarias 1995,1035,9001,7019,8901,1,0,6500
4328,"WGS 84 (geocentric)",6326,World Geodetic System 1984,6326,9001,7030,8901,1,1,6500
4330,"ITRF88 (geocentric)",6647,International Terrestrial Reference Frame 1988,6647,9001,7019,8901,1,1,6500
4331,"ITRF89 (geocentric)",6648,International Terrestrial Reference Frame 1989,6648,9001,7019,8901,1,1,6500
4332,"ITRF90 (geocentric)",6649,International Terrestrial Reference Frame 1990,6649,9001,7019,8901,1,1,6500
4333,"ITRF91 (geocentric)",6650,International Terrestrial Reference Frame 1991,6650,9001,7019,8901,1,1,6500
4334,"ITRF92 (geocentric)",6651,International Terrestrial Reference Frame 1992,6651,9001,7019,8901,1,1,6500
4335,"ITRF93 (geocentric)",6652,International Terrestrial Reference Frame 1993,6652,9001,7019,8901,1,1,6500
4336,"ITRF94 (geocentric)",6653,International Terrestrial Reference Frame 1994,6653,9001,7019,8901,1,1,6500
4337,"ITRF96 (geocentric)",6654,International Terrestrial Reference Frame 1996,6654,9001,7019,8901,1,1,6500
4338,"ITRF97 (geocentric)",6655,International Terrestrial Reference Frame 1997,6655,9001,7019,8901,1,1,6500
4340,"Australian Antarctic (geocentric)",6176,Australian Antarctic Datum 1998,6176,9001,7019,8901,1,1,6500
4342,"EST97 (geocentric)",6180,Estonia 1997,6180,9001,7019,8901,1,1,6500
4344,"CHTRF95 (geocentric)",6151,Swiss Terrestrial Reference Frame 1995,6151,9001,7019,8901,1,1,6500
4346,"ETRS89 (geocentric)",6258,European Terrestrial Reference System 1989,6258,9001,7019,8901,1,1,6500
4348,"GDA94 (geocentric)",6283,Geocentric Datum of Australia 1994,6283,9001,7019,8901,1,1,6500
4350,"Hartebeesthoek94 (geocentric)",6148,Hartebeesthoek94,6148,9001,7030,8901,1,1,6500
4352,"IRENET95 (geocentric)",6173,IRENET95,6173,9001,7019,8901,1,1,6500
4354,"JGD2000 (geocentric)",6612,Japanese Geodetic Datum 2000,6612,9001,7019,8901,1,1,6500
4356,"LKS94 (ETRS89) (geocentric)",6126,"Lithuania 1994 (ETRS89)",6126,9001,7019,8901,1,1,6500
4358,"Moznet (geocentric)",6130,"Moznet (ITRF94)",6130,9001,7030,8901,1,1,6500
4360,"NAD83(CSRS) (geocentric)",6140,NAD83 Canadian Spatial Reference System,6140,9001,7019,8901,1,1,6500
4362,"NAD83(HARN) (geocentric)",6152,"NAD83 (High Accuracy Reference Network)",6152,9001,7019,8901,1,1,6500
4364,"NZGD2000 (geocentric)",6167,New Zealand Geodetic Datum 2000,6167,9001,7019,8901,1,1,6500
4366,"POSGAR 98 (geocentric)",6190,Posiciones Geodesicas Argentinas 1998,6190,9001,7019,8901,1,1,6500
4368,"REGVEN (geocentric)",6189,Red Geodesica Venezolana,6189,9001,7019,8901,1,1,6500
4370,"RGF93 (geocentric)",6171,Reseau Geodesique Francais 1993,6171,9001,7019,8901,1,1,6500
4372,"RGFG95 (geocentric)",6624,Reseau Geodesique Francais Guyane 1995,6624,9001,7019,8901,1,1,6500
4374,"RGR92 (geocentric)",6627,Reseau Geodesique de la Reunion 1992,6627,9001,7019,8901,1,1,6500
4376,"SIRGAS (geocentric)",6170,Sistema de Referencia Geocentrico para America del Sur 1995,6170,9001,7019,8901,1,1,6500
4378,"SWEREF99 (geocentric)",6619,SWEREF99,6619,9001,7019,8901,1,1,6500
4380,"Yemen NGN96 (geocentric)",6163,Yemen National Geodetic Network 1996,6163,9001,7030,8901,1,1,6500
4382,"RGNC 1991 (geocentric)",6645,Reseau Geodesique Nouvelle Caledonie 1991,6645,9001,7022,8901,1,1,6500
4384,"RRAF 1991 (geocentric)",6640,Reseau de Reference des Antilles Francaises 1991,6640,9001,7030,8901,1,1,6500
4385,"ITRF2000 (geocentric)",6656,International Terrestrial Reference Frame 2000,6656,9001,7019,8901,1,1,6500
4387,"ISN93 (geocentric)",6659,Islands Net 1993,6659,9001,7019,8901,1,1,6500
4389,"LKS92 (geocentric)",6661,Latvia 1992,6661,9001,7019,8901,1,1,6500
4465,RGSPM06,1038,Reseau Geodesique de Saint Pierre et Miquelon 2006,1038,9001,7019,8901,1,0,6500
4468,RGM04,1036,Reseau Geodesique de Mayotte 2004,1036,9001,7019,8901,1,0,6500
4473,Cadastre 1997,1037,Cadastre 1997,1037,9001,7022,8901,1,0,6500
4479,China Geodetic Coordinate System 2000,1043,China 2000,1043,9001,1024,8901,1,0,6500
4481,Mexico ITRF92,1042,Mexico ITRF92,1042,9001,7019,8901,1,0,6500
4556,RRAF 1991,1047,Reseau de Reference des Antilles Francaises 1991,1047,9001,7019,8901,1,0,6500
4882,Slovenia 1996,6765,Slovenia Geodetic Datum 1996,6765,9001,7019,8901,1,0,6500
4884,RSRGD2000,6764,Ross Sea Region Geodetic Datum 2000,6764,9001,7019,8901,1,0,6500
4886,BDA2000,6762,Bermuda 2000,6762,9001,7030,8901,1,0,6500
4888,HTRS96,6761,Croatian Terrestrial Reference System,6761,9001,7019,8901,1,0,6500
4890,WGS 66,6760,World Geodetic System 1966,6760,9001,7025,8901,1,0,6500
4892,"NAD83(NSRS2007)",6759,"NAD83 (National Spatial Reference System 2007)",6759,9001,7019,8901,1,0,6500
4894,JAD2001,6758,Jamaica 2001,6758,9001,7030,8901,1,0,6500
4896,ITRF2005,6896,International Terrestrial Reference Frame 2005,6896,9001,7019,8901,1,0,6500
4897,DGN95,6755,Datum Geodesi Nasional 1995,6755,9001,7030,8901,1,0,6500
4899,LGD2006,6754,Libyan Geodetic Datum 2006,6754,9001,7022,8901,1,0,6500
4906,RGNC91-93,6749,Reseau Geodesique de Nouvelle Caledonie 91-93,6749,9001,7019,8901,1,0,6500
4908,GR96,6747,Greenland 1996,6747,9001,7019,8901,1,0,6500
4910,ITRF88,6647,International Terrestrial Reference Frame 1988,6647,9001,7019,8901,1,0,6500
4911,ITRF89,6648,International Terrestrial Reference Frame 1989,6648,9001,7019,8901,1,0,6500
4912,ITRF90,6649,International Terrestrial Reference Frame 1990,6649,9001,7019,8901,1,0,6500
4913,ITRF91,6650,International Terrestrial Reference Frame 1991,6650,9001,7019,8901,1,0,6500
4914,ITRF92,6651,International Terrestrial Reference Frame 1992,6651,9001,7019,8901,1,0,6500
4915,ITRF93,6652,International Terrestrial Reference Frame 1993,6652,9001,7019,8901,1,0,6500
4916,ITRF94,6653,International Terrestrial Reference Frame 1994,6653,9001,7019,8901,1,0,6500
4917,ITRF96,6654,International Terrestrial Reference Frame 1996,6654,9001,7019,8901,1,0,6500
4918,ITRF97,6655,International Terrestrial Reference Frame 1997,6655,9001,7019,8901,1,0,6500
4919,ITRF2000,6656,International Terrestrial Reference Frame 2000,6656,9001,7019,8901,1,0,6500
4920,GDM2000,6742,Geodetic Datum of Malaysia 2000,6742,9001,7019,8901,1,0,6500
4922,PZ-90,6740,Parametry Zemli 1990,6740,9001,7054,8901,1,0,6500
4924,Mauritania 1999,6702,Mauritania 1999,6702,9001,7019,8901,1,0,6500
4926,Korea 2000,6737,Geocentric datum of Korea,6737,9001,7019,8901,1,0,6500
4928,POSGAR 94,6694,Posiciones Geodesicas Argentinas 1994,6694,9001,7030,8901,1,0,6500
4930,Australian Antarctic,6176,Australian Antarctic Datum 1998,6176,9001,7019,8901,1,0,6500
4932,CHTRF95,6151,Swiss Terrestrial Reference Frame 1995,6151,9001,7019,8901,1,0,6500
4934,EST97,6180,Estonia 1997,6180,9001,7019,8901,1,0,6500
4936,ETRS89,6258,European Terrestrial Reference System 1989,6258,9001,7019,8901,1,0,6500
4938,GDA94,6283,Geocentric Datum of Australia 1994,6283,9001,7019,8901,1,0,6500
4940,Hartebeesthoek94,6148,Hartebeesthoek94,6148,9001,7030,8901,1,0,6500
4942,IRENET95,6173,IRENET95,6173,9001,7019,8901,1,0,6500
4944,ISN93,6659,Islands Net 1993,6659,9001,7019,8901,1,0,6500
4946,JGD2000,6612,Japanese Geodetic Datum 2000,6612,9001,7019,8901,1,0,6500
4948,LKS92,6661,Latvia 1992,6661,9001,7019,8901,1,0,6500
4950,LKS94,6126,"Lithuania 1994 (ETRS89)",6126,9001,7019,8901,1,0,6500
4952,Moznet,6130,"Moznet (ITRF94)",6130,9001,7030,8901,1,0,6500
4954,"NAD83(CSRS)",6140,NAD83 Canadian Spatial Reference System,6140,9001,7019,8901,1,0,6500
4956,"NAD83(HARN)",6152,"NAD83 (High Accuracy Reference Network)",6152,9001,7019,8901,1,0,6500
4958,NZGD2000,6167,New Zealand Geodetic Datum 2000,6167,9001,7019,8901,1,0,6500
4960,POSGAR 98,6190,Posiciones Geodesicas Argentinas 1998,6190,9001,7019,8901,1,0,6500
4962,REGVEN,6189,Red Geodesica Venezolana,6189,9001,7019,8901,1,0,6500
4964,RGF93,6171,Reseau Geodesique Francais 1993,6171,9001,7019,8901,1,0,6500
4966,RGFG95,6624,Reseau Geodesique Francais Guyane 1995,6624,9001,7019,8901,1,0,6500
4968,RGNC 1991,6645,Reseau Geodesique Nouvelle Caledonie 1991,6645,9001,7022,8901,1,1,6500
4970,RGR92,6627,Reseau Geodesique de la Reunion 1992,6627,9001,7019,8901,1,0,6500
4972,RRAF 1991,6640,Reseau de Reference des Antilles Francaises 1991,6640,9001,7030,8901,1,1,6500
4974,SIRGAS 1995,6170,Sistema de Referencia Geocentrico para America del Sur 1995,6170,9001,7019,8901,1,0,6500
4976,SWEREF99,6619,SWEREF99,6619,9001,7019,8901,1,0,6500
4978,WGS 84,6326,World Geodetic System 1984,6326,9001,7030,8901,1,0,6500
4980,Yemen NGN96,6163,Yemen National Geodetic Network 1996,6163,9001,7030,8901,1,0,6500
4982,IGM95,6670,Istituto Geografico Militaire 1995,6670,9001,7030,8901,1,0,6500
4984,WGS 72,6322,World Geodetic System 1972,6322,9001,7043,8901,1,0,6500
4986,WGS 72BE,6324,WGS 72 Transit Broadcast Ephemeris,6324,9001,7043,8901,1,0,6500
4988,SIRGAS 2000,6674,Sistema de Referencia Geocentrico para las AmericaS 2000,6674,9001,7019,8901,1,0,6500
4990,Lao 1993,6677,Lao 1993,6677,9001,7024,8901,1,0,6500
4992,Lao 1997,6678,Lao National Datum 1997,6678,9001,7024,8901,1,0,6500
4994,PRS92,6683,Philippine Reference System 1992,6683,9001,7008,8901,1,0,6500
4996,MAGNA-SIRGAS,6686,Marco Geocentrico Nacional de Referencia,6686,9001,7019,8901,1,0,6500
4998,RGPF,6687,Reseau Geodesique de la Polynesie Francaise,6687,9001,7019,8901,1,0,6500
5011,PTRA08,1041,Autonomous Regions of Portugal 2008,1041,9001,7019,8901,1,0,6500
5244,GDBD2009,1056,Geocentric Datum Brunei Darussalam 2009,1056,9001,7019,8901,1,0,6500
5250,TUREF,1057,Turkish National Reference Frame,1057,9001,7019,8901,1,0,6500
5262,DRUKREF 03,1058,Bhutan National Geodetic Datum,1058,9001,7019,8901,1,0,6500
5322,ISN2004,1060,Islands Net 2004,1060,9001,7019,8901,1,0,6500
5332,ITRF2008,1061,International Terrestrial Reference Frame 2008,1061,9001,7019,8901,1,0,6500
5341,POSGAR 2007,1062,Posiciones Geodesicas Argentinas 2007,1062,9001,7019,8901,1,0,6500
5352,MARGEN,1063,Marco Geodesico Nacional de Bolivia,1063,9001,7019,8901,1,0,6500
5358,SIRGAS-Chile,1064,SIRGAS-Chile,1064,9001,7019,8901,1,0,6500
5363,CR05,1065,Costa Rica 2005,1065,9001,7030,8901,1,0,6500
5368,MACARIO SOLIS,1066,Sistema Geodesico Nacional de Panama MACARIO SOLIS,1066,9001,7019,8901,1,0,6500
5369,Peru96,1067,Peru96,1067,9001,7019,8901,1,0,6500
5379,SIRGAS-ROU98,1068,SIRGAS-ROU98,1068,9001,7030,8901,1,0,6500
5391,"SIRGAS_ES2007.8",1069,"SIRGAS_ES2007.8",1069,9001,7019,8901,1,0,6500
5487,RGAF09,1073,Reseau Geodesique des Antilles Francaises 2009,1073,9001,7019,8901,1,0,6500
5544,PNG94,1076,Papua New Guinea Geodetic Datum 1994,1076,9001,7019,8901,1,0,6500
5558,UCS-2000,1077,Ukraine 2000,1077,9001,7024,8901,1,0,6500
5591,FEH2010,1078,Fehmarnbelt Datum 2010,1078,9001,7019,8901,1,0,6500
5828,"DB_REF",1081,Deutsche Bahn Reference System,1081,9001,7004,8901,1,0,6500
5884,TGD2005,1095,Tonga Geodetic Datum 2005,1095,9001,7019,8901,1,0,6500
6133,CIGD11,1100,Cayman Islands Geodetic Datum 2011,1100,9001,7019,8901,1,0,6500
6309,CGRS93,1112,Cyprus Geodetic Reference System 1993,1112,9001,7030,8901,1,0,6500
6317,"NAD83(2011)",1116,"NAD83 (National Spatial Reference System 2011)",1116,9001,7019,8901,1,0,6500
6320,"NAD83(PA11)",1117,"NAD83 (National Spatial Reference System PA11)",1117,9001,7019,8901,1,0,6500
6323,"NAD83(MA11)",1118,"NAD83 (National Spatial Reference System MA11)",1118,9001,7019,8901,1,0,6500
6363,Mexico ITRF2008,1120,Mexico ITRF2008,1120,9001,7019,8901,1,0,6500
6666,JGD2011,1128,Japanese Geodetic Datum 2011,1128,9001,7019,8901,1,0,6500
6704,RDN2008,1132,Rete Dinamica Nazionale 2008,1132,9001,7019,8901,1,0,6500
6781,"NAD83(CORS96)",1133,"NAD83 (Continuously Operating Reference Station 1996)",1133,9001,7019,8901,1,0,6500
6934,IGS08,1141,IGS08,1141,9001,7019,8901,1,0,6500
6978,IGD05,1143,Israeli Geodetic Datum 2005,1143,9001,7019,8901,1,1,6500
6981,IG05 Intermediate CRS,1142,IG05 Intermediate Datum,1142,9001,7019,8901,1,0,6500
6985,"IGD05/12",1145,"Israeli Geodetic Datum 2005(2012)",1145,9001,7019,8901,1,1,6500
6988,"IG05/12 Intermediate CRS",1144,"IG05/12 Intermediate Datum",1144,9001,7019,8901,1,0,6500
7071,RGTAAF07,1113,Reseau Geodesique des Terres Australes et Antarctiques Francaises 2007,1113,9001,7019,8901,1,0,6500
7134,IGD05,1114,Israeli Geodetic Datum 2005,1114,9001,7030,8901,1,0,6500
7137,"IGD05/12",1115,"Israeli Geodetic Datum 2005(2012)",1115,9001,7030,8901,1,0,6500
7371,ONGD14,1147,Oman National Geodetic Datum 2014,1147,9001,7019,8901,1,0,6500
7656,"WGS 84 (G730)",1152,"World Geodetic System 1984 (G730)",1152,9001,7030,8901,1,0,6500
7658,"WGS 84 (G873)",1153,"World Geodetic System 1984 (G873)",1153,9001,7030,8901,1,0,6500
7660,"WGS 84 (G1150)",1154,"World Geodetic System 1984 (G1150)",1154,9001,7030,8901,1,0,6500
7662,"WGS 84 (G1674)",1155,"World Geodetic System 1984 (G1674)",1155,9001,7030,8901,1,0,6500
7664,"WGS 84 (G1762)",1156,"World Geodetic System 1984 (G1762)",1156,9001,7030,8901,1,0,6500
7677,PZ-90.02,1157,Parametry Zemli 1990.02,1157,9001,7054,8901,1,0,6500
7679,PZ-90.11,1158,Parametry Zemli 1990.11,1158,9001,7054,8901,1,0,6500
7681,GSK-2011,1159,Geodezicheskaya Sistema Koordinat 2011,1159,9001,1025,8901,1,0,6500
7684,Kyrg-06,1160,Kyrgyzstan Geodetic Datum 2006,1160,9001,7019,8901,1,0,6500
7789,ITRF2014,1165,International Terrestrial Reference Frame 2014,1165,9001,7019,8901,1,0,6500
7796,BGS2005,1167,Bulgaria Geodetic System 2005,1167,9001,7019,8901,1,0,6500
7815,"WGS 84 (Transit)",1166,"World Geodetic System 1984 (Transit)",1166,9001,7030,8901,1,0,6500
7842,GDA2020,1168,Geocentric Datum of Australia 2020,1168,9001,7019,8901,1,0,6500
7879,St. Helena Tritan,1173,St. Helena Tritan,1173,9001,7030,8901,1,0,6500
7884,SHGD2015,1174,St. Helena Geodetic Datum 2015,1174,9001,7019,8901,1,0,6500
Loading