Skip to content

Commit

Permalink
Merge pull request #279 from ASFHyP3/develop
Browse files Browse the repository at this point in the history
Release v0.3.58: SDK v1.7.5
  • Loading branch information
jhkennedy authored Jan 12, 2023
2 parents 6bcd766 + 613b1d0 commit 4ad2aa1
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 15 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.58]

### Changed
* Updated HyP3 SDK to [v1.7.5](https://github.com/ASFHyP3/hyp3-sdk/blob/main/CHANGELOG.md#175)

### Fixed
* Included timezone information in the [MintPy tutorial](docs/tutorials/hyp3_insar_stack_for_ts_analysis.ipynb) when
comparing with `asf_search` results because date-times reported in search results will have a timezone as of
[asf_search v5.0.0](https://github.com/asfadmin/Discovery-asf_search/blob/master/CHANGELOG.md#500).

## [0.3.57]

### Changed
Expand Down
12 changes: 6 additions & 6 deletions docs/tutorials/hyp3_insar_stack_for_ts_analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"This notebook walks through performing a time-series analysis of the 2019 Ridgecrest, CA earthquake with On Demand InSAR products from the Alaska Satellite facility and MintPy. We'll:\n",
"\n",
"1. Use the [ASF Search Python package](https://docs.asf.alaska.edu/asf_search/basics/) to:\n",
" - Search ASF's catalog for Sentinel-1 SAR products covering the [Ridgecrest](https://earthquake.usgs.gov/storymap/index-ridgecrest.html)\n",
" - Search ASF's catalog for Sentinel-1 SAR products covering the [Ridgecrest earthquake](https://earthquake.usgs.gov/storymap/index-ridgecrest.html)\n",
" - Select a reference scene to generate a baseline stack\n",
" - Select a [short baseline subset (SBAS)](https://docs.asf.alaska.edu/vertex/sbas/) of scene pairs for InSAR processing\n",
"\n",
Expand All @@ -27,7 +27,7 @@
"---\n",
"\n",
"**Note:** This notebook does assume you have some familiarity with InSAR processing with MintPy already, and is a minimal example without much context or explanations. If you're new to InSAR and MintPy, I suggest checking out:\n",
"* our [InSAR on Demand! StoryMap](https://storymaps.arcgis.com/stories/68a8a3253900411185ae9eb6bb5283d3)\n",
"* our [InSAR on Demand Story Map](https://storymaps.arcgis.com/stories/68a8a3253900411185ae9eb6bb5283d3)\n",
"\n",
"\n",
"* [OpenSARlab's](https://opensarlab-docs.asf.alaska.edu/) highly detailed walkthrough of using HyP3 + MintPy via these notebooks:\n",
Expand Down Expand Up @@ -93,8 +93,8 @@
"work_dir = Path.cwd() / project_name\n",
"data_dir = work_dir / 'data'\n",
"\n",
"stack_start = parse_date('2019-06-10')\n",
"stack_end = parse_date('2019-07-21')\n",
"stack_start = parse_date('2019-06-10 00:00:00Z')\n",
"stack_end = parse_date('2019-07-21 00:00:00Z)\n",
"max_temporal_baseline = 13 #days\n",
"\n",
"data_dir.mkdir(parents=True, exist_ok=True)\n"
Expand Down Expand Up @@ -214,7 +214,7 @@
"outputs": [],
"source": [
"\n",
"jobs = hyp3.find_jobs(name=project_name)\n"
"jobs = hyp3.watch(jobs)\n"
]
},
{
Expand All @@ -225,7 +225,7 @@
"outputs": [],
"source": [
"\n",
"jobs = hyp3.watch(jobs)\n"
"jobs = hyp3.find_jobs(name=project_name)\n"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/using/sdk.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{{ get_content('https://raw.githubusercontent.com/ASFHyP3/hyp3-sdk/v1.7.3/README.md') }}
{{ get_content('https://raw.githubusercontent.com/ASFHyP3/hyp3-sdk/v1.7.5/README.md') }}
10 changes: 3 additions & 7 deletions docs/using/sdk_api.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# `hyp3_sdk` *v1.7.3* API Reference
# `hyp3_sdk` *v1.7.5* API Reference

::: hyp3_sdk

## util

::: hyp3_sdk.util
options:
show_submodules: true
heading_level: 3
show_root_heading: true
show_submodules: true
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
- mkdocs>1.2.3
- mkdocs-material=6.2
- mkdocs-material-extensions
- hyp3_sdk=1.7.3 # also pinned in docs/using/sdk.md
- hyp3_sdk=1.7.5 # also pinned in docs/using/sdk.md
- asf_tools=0.4.5 # also pinned in docs/tools/asf_tools.md
- requests
- pygments=2.11.2 # avoids breaking change in v2.12.0 impacting mkdocs-material v6.2.8
Expand Down

0 comments on commit 4ad2aa1

Please sign in to comment.