-
Notifications
You must be signed in to change notification settings - Fork 11
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 #6 from ASFOpenSARlab/feature/subsetting_options
- Install MintPy from https://github.com/insarlab/MintPy.git@44d5afd to pull in kmz fix - Add GitHub Issues and ASF support messages to every notebook - Support subsetting with WKT or shapefile - some new util functions to support subsetting - Remove CDS service slowdown warning - Display dates when plotting inverted time series
- Loading branch information
Showing
14 changed files
with
733 additions
and
290 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,44 @@ | |
"Installs the `opensarlab_mintpy_recipe_book` conda environment, which is used by all other notebooks in this Jupyter Book.\n", | ||
"\n", | ||
"---\n", | ||
"\n", | ||
"<div class=\"alert alert-info\" style=\"display: flex; align-items: center; font-family: 'Times New Roman', Times, serif; background-color: #d1ecf1;\">\n", | ||
" <div style=\"display: flex; align-items: center; width: 10%;\">\n", | ||
" <a href=\"https://github.com/ASFOpenSARlab/opensarlab_MintPy_Recipe_Book/issues\">\n", | ||
" <img src=\"github_issues.png\" alt=\"GitHub logo over the word Issues\" style=\"width: 100%;\">\n", | ||
" </a>\n", | ||
" </div>\n", | ||
" <div style=\"width: 95%;\">\n", | ||
" <b>Did you find a bug? Do you have a feature request?</b>\n", | ||
" <br/>\n", | ||
" Explore GitHub Issues on this Jupyter Book's GitHub repository. Find solutions, add to the discussion, or start a new bug report or feature request: <a href=\"https://github.com/ASFOpenSARlab/opensarlab_MintPy_Recipe_Book/issues\">opensarlab_MintPy_Recipe_Book Issues</a>\n", | ||
" </div>\n", | ||
"</div>\n", | ||
"\n", | ||
"<div class=\"alert alert-info\" style=\"display: flex; align-items: center; justify-content: space-between; font-family: 'Times New Roman', Times, serif; background-color: #d1ecf1;\">\n", | ||
" <div style=\"display: flex; align-items: center; width: 10%; margin-right: 10px;\">\n", | ||
" <a href=\"mailto:[email protected]\">\n", | ||
" <img src=\"ASF_support_logo.png\" alt=\"ASF logo\" style=\"width: 100%\">\n", | ||
" </a>\n", | ||
" </div>\n", | ||
" <div style=\"width: 95%;\">\n", | ||
" <b>Have a question related to SAR, ASF data access, or performing SBAS time series analyses with MintPy?</b>\n", | ||
" <br/>\n", | ||
" Contact ASF User Support: <a href=\"mailto:[email protected]\">[email protected]</a>\n", | ||
" </div>\n", | ||
"</div>\n", | ||
"\n", | ||
"---\n", | ||
"\n", | ||
"## 0. Import Required Software" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "e815a0ca-f938-4e9e-b674-5b3c41a231cc", | ||
"metadata": {}, | ||
"source": [] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
|
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 |
---|---|---|
|
@@ -33,6 +33,34 @@ | |
"**If you do not add your CDS credentials to `~/.cdsapirc`, the `correct_troposphere` step will fail**\n", | ||
"\n", | ||
"---\n", | ||
"\n", | ||
"<div class=\"alert alert-info\" style=\"display: flex; align-items: center; font-family: 'Times New Roman', Times, serif; background-color: #d1ecf1;\">\n", | ||
" <div style=\"display: flex; align-items: center; width: 10%;\">\n", | ||
" <a href=\"https://github.com/ASFOpenSARlab/opensarlab_MintPy_Recipe_Book/issues\">\n", | ||
" <img src=\"github_issues.png\" alt=\"GitHub logo over the word Issues\" style=\"width: 100%;\">\n", | ||
" </a>\n", | ||
" </div>\n", | ||
" <div style=\"width: 95%;\">\n", | ||
" <b>Did you find a bug? Do you have a feature request?</b>\n", | ||
" <br/>\n", | ||
" Explore GitHub Issues on this Jupyter Book's GitHub repository. Find solutions, add to the discussion, or start a new bug report or feature request: <a href=\"https://github.com/ASFOpenSARlab/opensarlab_MintPy_Recipe_Book/issues\">opensarlab_MintPy_Recipe_Book Issues</a>\n", | ||
" </div>\n", | ||
"</div>\n", | ||
"\n", | ||
"<div class=\"alert alert-info\" style=\"display: flex; align-items: center; justify-content: space-between; font-family: 'Times New Roman', Times, serif; background-color: #d1ecf1;\">\n", | ||
" <div style=\"display: flex; align-items: center; width: 10%; margin-right: 10px;\">\n", | ||
" <a href=\"mailto:[email protected]\">\n", | ||
" <img src=\"ASF_support_logo.png\" alt=\"ASF logo\" style=\"width: 100%\">\n", | ||
" </a>\n", | ||
" </div>\n", | ||
" <div style=\"width: 95%;\">\n", | ||
" <b>Have a question related to SAR, ASF data access, or performing SBAS time series analyses with MintPy?</b>\n", | ||
" <br/>\n", | ||
" Contact ASF User Support: <a href=\"mailto:[email protected]\">[email protected]</a>\n", | ||
" </div>\n", | ||
"</div>\n", | ||
"\n", | ||
"---\n", | ||
"## 0. Import Required Software" | ||
] | ||
}, | ||
|
@@ -120,7 +148,7 @@ | |
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3 (ipykernel)", | ||
"display_name": "Python [conda env:.local-opensarlab_mintpy_recipe_book]", | ||
"language": "python", | ||
"name": "conda-env-.local-opensarlab_mintpy_recipe_book-py" | ||
}, | ||
|
Oops, something went wrong.