-
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 #128 from jjimenezshaw/thueringen
Grid file for PD/83 to ETRS89 in Thüringen, Germany
- Loading branch information
Showing
10 changed files
with
57 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 @@ | ||
../de_tlbg_thueringen_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,26 @@ | ||
#!/bin/bash -e | ||
|
||
# https://geoportal.thueringen.de/gdi-th/download-offene-geodaten/ntv2-gittertransformation | ||
|
||
# Usage: | ||
# PROJ_DATA_DIR=/path/to/PROJ-data ./build_tlbg_thueringen_NTv2gridTH.sh | ||
|
||
orig=de_tlbg_thueringen_NTv2gridTH.gsb | ||
input=$orig | ||
output=de_tlbg_thueringen_NTv2gridTH.tif | ||
|
||
docker run --user $(id -u):$(id -g) --workdir $PWD \ | ||
--rm -v /home:/home ghcr.io/osgeo/gdal:alpine-normal-latest \ | ||
sh -c " \ | ||
python3 ${PROJ_DATA_DIR}/grid_tools/ntv2_to_gtiff.py \ | ||
--source-crs \"EPSG:4746\" \ | ||
--target-crs \"EPSG:4258\" \ | ||
--accuracy-unit arc-second \ | ||
--description \"PD/83 (EPSG:4746) to ETRS89 (EPSG:4258). Converted from $orig\" \ | ||
--area-of-use \"Germany - Thuringen\" \ | ||
--copyright \"Derived from work by TLGB Thueringen. CC-BY-4.0 https://creativecommons.org/licenses/by/4.0/\" \ | ||
./$input ./$output && \ | ||
# Run check_gtiff_grid-script | ||
python3 ${PROJ_DATA_DIR}/grid_tools/check_gtiff_grid.py ./$output \ | ||
# Show info | ||
gdalinfo ./$output " |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# de_tlbg_thueringen_README.txt | ||
|
||
The files in this section result from the conversion of datasets originating | ||
from [TLGB Thüringen](https://tlbg.thueringen.de/) | ||
|
||
## Included grids | ||
|
||
### Germany (Thüringen): PD/83 -> ETRS89 | ||
|
||
*Source*: [TLGB Thüringen](https://geoportal.thueringen.de/gdi-th/download-offene-geodaten/ntv2-gittertransformation) | ||
*Format*: GeoTIFF converted from NTv2 | ||
*License*: [Creative Commons Attribution 4.0](https://creativecommons.org/licenses/by/4.0/) | ||
|
||
* de_tlbg_thueringen_NTv2gridTH.tif |
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