Skip to content

Commit

Permalink
Add information about DEM management in SAR notebook #61
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-braun committed Nov 29, 2022
1 parent af2e9a7 commit 11629a0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
PATH)
- DOC: Add Technical Note published in Remote Sensing MDPI in Readme
- DOC: Update optical band mapping graphs (fix regression to 0.15.0 supported constellation)
- DOC: Add information about DEM management in SAR notebook ([#61](https://github.com/sertit/eoreader/issues/61))
- CI: Update Github actions

## 0.17.0 (2022-10-12)
Expand Down
15 changes: 12 additions & 3 deletions docs/notebooks/SAR.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -265,18 +265,27 @@
},
"source": [
"For SAR data, the footprint needs the orthorectified data !\n",
"For that, SNAP uses its own DEM, but you can change it when positionning the `EOREADER_SNAP_DEM_NAME` environment variable. \n",
"For that, SNAP uses its own DEM, but you can change it when positionning the `EOREADER_SNAP_DEM_NAME` environment variable.\n",
"\n",
"Available DEMs are:\n",
"- `ACE2_5Min` \n",
"- `ACE30`\n",
"- `ASTER 1sec GDEM`\n",
"- `Copernicus 30m Global DEM`\n",
"- `Copernicus 30m Global DEM` (by default)\n",
"- `Copernicus 90m Global DEM`\n",
"- `GETASSE30` (by default)\n",
"- `GETASSE30`\n",
"- `SRTM 1Sec HGT`\n",
"- `SRTM 3Sec`\n",
"- `External DEM`\n",
"\n",
"For example:\n",
"\n",
"```python\n",
"import os\n",
"from eoreader.env_vars import SNAP_DEM_NAME\n",
"os.environ[SNAP_DEM_NAME] = \"GETASSE30\"\n",
"```\n",
"\n",
"<div class=\"alert alert-warning\">\n",
" \n",
"<strong>Warning:</strong> \n",
Expand Down

0 comments on commit 11629a0

Please sign in to comment.