Skip to content

Commit

Permalink
Merge pull request #712 from nsidc/fix-nodata-overviews-gravity-geoid…
Browse files Browse the repository at this point in the history
…-layers

Fix geoid and gravity anomaly layers' nodata value in overviews
  • Loading branch information
trey-stafford committed Aug 8, 2023
2 parents 47bcdc9 + 969a0f6 commit 0def693
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,11 @@
- Switch back to `.qgs` project file from `.qgz`; There is [an
issue](https://github.com/qgis/QGIS/issues/42033) conveniently opening `.qgz`
project files in OSX for some versions of QGIS `3.16.x`.
- Fix issue with "Geophysics/" layers displaying nodata values at some zoom
levels:
- "Bouguer gravity anomaly (2km)"
- "Faye (free-air) gravity anomaly (2km)"
- "Geoid model (2km)"


# v2.0.0rc6 (2022-03-17)
Expand Down
6 changes: 6 additions & 0 deletions qgreenland/config/cfg-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -18394,6 +18394,8 @@
"EPSG:3413",
"-r",
"bilinear",
"-dstnodata",
"-9999",
"-tr",
"2000",
"2000",
Expand Down Expand Up @@ -18485,6 +18487,8 @@
"EPSG:3413",
"-r",
"bilinear",
"-dstnodata",
"-9999",
"-tr",
"2000",
"2000",
Expand Down Expand Up @@ -18576,6 +18580,8 @@
"EPSG:3413",
"-r",
"bilinear",
"-dstnodata",
"-9999",
"-tr",
"2000",
"2000",
Expand Down
6 changes: 6 additions & 0 deletions qgreenland/config/helpers/layers/gravity_anomalies_geoid.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ def _make_layer(
input_file="{input_dir}/" + filename,
output_file="{output_dir}/" + filename,
reproject_args=[
# The source nodata value is 1.70141e+38. This value is not
# correctly set in the overviews (added in the step below),
# so override it here as -9999. See
# https://github.com/OSGeo/gdal/issues/8187.
"-dstnodata",
"-9999",
# Source data is 0.02x-0.02 degrees resolution. Rene noted in
# his email to QGreenland on 2021-01-22 that the geoid and
# gravity anomaly grids are 2km resolution.
Expand Down

0 comments on commit 0def693

Please sign in to comment.