-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from AlexBass05/add-slovenian-geoid-model
Add Slovenian geoid model SLO-VRP2016/Koper
- Loading branch information
Showing
8 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../si_gurs_README.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
# Usage: | ||
# PROJ_DATA_DIR=/path/to/PROJ-data ./build_SLO-VRP2016-Koper.sh SLOVRP2016-Koper.xyz si_gurs_SLO-VRP2016-Koper.tif | ||
|
||
# Setup build directory | ||
mkdir build | ||
|
||
# Copy input file into build directory | ||
cp $1 ./build/$1 | ||
|
||
docker run --user $(id -u):$(id -g) --workdir $PWD \ | ||
--rm -v /home:/home osgeo/gdal:alpine-normal-latest \ | ||
sh -c " \ | ||
# Call vertoffset_grid_to_gtiff-script | ||
python3 ${PROJ_DATA_DIR}/grid_tools/vertoffset_grid_to_gtiff.py \ | ||
--type GEOGRAPHIC_TO_VERTICAL \ | ||
--source-crs \"EPSG:4883\" \ | ||
--target-crs \"EPSG:8690\" \ | ||
--description \"Slovenia 1996 (EPSG:4883) to SVS2010 height (EPSG:8690). Converted from SLOVRP2016-Koper.xyz\" \ | ||
--area-of-use \"Slovenia - onshore\" \ | ||
--copyright \"Derived from work by GURS. CC-BY-4.0 https://creativecommons.org/licenses/by/4.0/\" \ | ||
./build/$1 ./$2 && \ | ||
# Show info | ||
gdalinfo ./$2 " | ||
|
||
# Remove build directory | ||
rm -rf build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# si_gurs_README.txt | ||
|
||
The files in this section result from the conversion of datasets originating | ||
from [GURS](http://www.gu.gov.si) | ||
|
||
## Included grids | ||
|
||
### Slovenia vertical grid: | ||
|
||
*Source*: [GURS](https://www.e-prostor.gov.si/podrocja/drzavni-koordinatni-sistem/vertikalna-sestavina/?acitem=1257-1258) | ||
*Format*: GeoTIFF converted from 'XYZ ASCII Grid' | ||
*License*: [Creative Commons Attribution 4.0](https://creativecommons.org/licenses/by/4.0/) | ||
*Credit*: (c) Geodetska uprava Republika Slovenija | ||
*Horizontal CRS*: EPSG:4883 (Slovenia 1996) | ||
|
||
Vertical transformation for hybrid quasi-geoid model SLO-VRP2016/Koper. Used to make the | ||
transition from heights in vertical CRS (EPSG:8690 - SVS2010 height) to heights above the | ||
ellipsoid in Slovenia 1996 (EPSG:4883). | ||
|
||
* si_gurs_SLO-VRP2016-Koper.tif |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters