From 7fd50fabe8eee265c6e5eda6ec9c02fda3770088 Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Thu, 4 May 2023 15:41:26 -0800 Subject: [PATCH 1/8] Update release-template-comment.yml --- .github/workflows/release-template-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-template-comment.yml b/.github/workflows/release-template-comment.yml index c913408f..29e77ad7 100644 --- a/.github/workflows/release-template-comment.yml +++ b/.github/workflows/release-template-comment.yml @@ -6,7 +6,7 @@ on: - main jobs: - call-release-workflow: + call-release-checklist-workflow: uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.7.1 secrets: USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 9e245f5a6556dbe82c58235fa528d7ae3549aba9 Mon Sep 17 00:00:00 2001 From: Jake Herrmann Date: Wed, 28 Jun 2023 19:10:28 -0800 Subject: [PATCH 2/8] Add `create-jira-issue.yml` --- .github/workflows/create-jira-issue.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/create-jira-issue.yml diff --git a/.github/workflows/create-jira-issue.yml b/.github/workflows/create-jira-issue.yml new file mode 100644 index 00000000..8ce649de --- /dev/null +++ b/.github/workflows/create-jira-issue.yml @@ -0,0 +1,15 @@ +name: Create Jira issue + +on: + issues: + types: [labeled] + +jobs: + call-create-jira-issue-workflow: + uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.8.0 + secrets: + JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} + JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} + JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} + JIRA_PROJECT: ${{ secrets.JIRA_PROJECT }} + JIRA_FIELDS: ${{ secrets.JIRA_FIELDS }} From cc3a70c94fe80fcb8ad293e1c27af47bd6a47082 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Jun 2023 15:10:03 +0000 Subject: [PATCH 3/8] Bump ASFHyP3/actions from 0.7.1 to 0.8.0 Bumps [ASFHyP3/actions](https://github.com/asfhyp3/actions) from 0.7.1 to 0.8.0. - [Release notes](https://github.com/asfhyp3/actions/releases) - [Changelog](https://github.com/ASFHyP3/actions/blob/develop/CHANGELOG.md) - [Commits](https://github.com/asfhyp3/actions/compare/v0.7.1...v0.8.0) --- updated-dependencies: - dependency-name: ASFHyP3/actions dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/changelog.yml | 2 +- .github/workflows/labeled-pr.yml | 2 +- .github/workflows/release-template-comment.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/static-analysis.yml | 4 ++-- .github/workflows/tag-version.yml | 2 +- .github/workflows/test-and-build.yml | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 3737f2ef..19ae63e7 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -13,6 +13,6 @@ on: jobs: call-changelog-check-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.8.0 secrets: USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/labeled-pr.yml b/.github/workflows/labeled-pr.yml index 013f4130..735b477d 100644 --- a/.github/workflows/labeled-pr.yml +++ b/.github/workflows/labeled-pr.yml @@ -12,4 +12,4 @@ on: jobs: call-labeled-pr-check-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.8.0 diff --git a/.github/workflows/release-template-comment.yml b/.github/workflows/release-template-comment.yml index 29e77ad7..55c27824 100644 --- a/.github/workflows/release-template-comment.yml +++ b/.github/workflows/release-template-comment.yml @@ -7,6 +7,6 @@ on: jobs: call-release-checklist-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.8.0 secrets: USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7248204e..d6a3bbfe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: call-release-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.8.0 with: release_prefix: HyP3 GAMMA secrets: diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index b796fa08..5d076508 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -4,9 +4,9 @@ on: push jobs: call-flake8-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-flake8.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-flake8.yml@v0.8.0 with: local_package_names: hyp3_gamma call-secrets-analysis-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.8.0 diff --git a/.github/workflows/tag-version.yml b/.github/workflows/tag-version.yml index 8f49136a..2c99081e 100644 --- a/.github/workflows/tag-version.yml +++ b/.github/workflows/tag-version.yml @@ -7,6 +7,6 @@ on: jobs: call-bump-version-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.8.0 secrets: USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }} diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index 5fdf9396..91d84d42 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -18,14 +18,14 @@ env: jobs: call-pytest-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.8.0 with: local_package_name: hyp3_gamma python_versions: >- ["3.10"] call-version-info-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.1 + uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.8.0 with: python_version: '3.10' From db22c16428d5a7b74ec92884448458a482c18a5c Mon Sep 17 00:00:00 2001 From: jiangzhu Date: Wed, 19 Jul 2023 17:00:16 -0800 Subject: [PATCH 4/8] modify the readme.md.txt.j2 to include the unit of the DEM --- hyp3_gamma/metadata/templates/rtc/readme.md.txt.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyp3_gamma/metadata/templates/rtc/readme.md.txt.j2 b/hyp3_gamma/metadata/templates/rtc/readme.md.txt.j2 index 0106d886..6f6fd27b 100644 --- a/hyp3_gamma/metadata/templates/rtc/readme.md.txt.j2 +++ b/hyp3_gamma/metadata/templates/rtc/readme.md.txt.j2 @@ -101,7 +101,7 @@ The Digital Elevation Model (DEM) used for RTC processing can optionally be incl The source DEM has a geoid correction applied before it is used for RTC, so elevation values in this file will differ from the source DEM. It is provided in the same pixel spacing/alignment as the RTC product. **The pixel spacing of the DEM included in the product package is not a reflection of the resolution of the source DEM, which is resampled to match the pixel spacing of the RTC product.** The pixel spacing of the adjusted DEM included in this product package is {{ pixel_spacing|int }} meters. -The DEM used for this product is {{ dem_name }}, which has a native pixel spacing of {{ dem_pixel_spacing(dem_name) }}. {{ dem_blurb(dem_name) }} +The DEM used for this product is {{ dem_name }}. Cell values of the DEM indicate the elevation in meters. The DEM has a native pixel spacing of {{ dem_pixel_spacing(dem_name) }}. {{ dem_blurb(dem_name) }} {% if dem_blurb(dem_name) %} *Refer to the _dem.tif.xml file for additional information about the specific DEM included with this product, including use and citation requirements.* From ccb1f28f967455ec520687c747ee4db61f0b6fd4 Mon Sep 17 00:00:00 2001 From: jiangzhu Date: Thu, 20 Jul 2023 11:13:44 -0800 Subject: [PATCH 5/8] add DEM unit in meters to the readme.md.txt --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa9967e7..f6fe3478 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ 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). +## [6.2.3] + +### Added +- the DEM unit in meters to the readme.md.txt file in the RTC product ## [6.2.2] From 38bf395a0fc52167c48d12b3f877078460ad8364 Mon Sep 17 00:00:00 2001 From: hjkristenson Date: Thu, 27 Jul 2023 11:46:09 -0800 Subject: [PATCH 6/8] add units for DEM file to InSAR readme --- hyp3_gamma/metadata/templates/insar/readme.md.txt.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyp3_gamma/metadata/templates/insar/readme.md.txt.j2 b/hyp3_gamma/metadata/templates/insar/readme.md.txt.j2 index c19d7e0b..8550612f 100644 --- a/hyp3_gamma/metadata/templates/insar/readme.md.txt.j2 +++ b/hyp3_gamma/metadata/templates/insar/readme.md.txt.j2 @@ -196,7 +196,7 @@ The ellipsoid incidence angle indicates the angle in radians between the inciden ---------------- ## 10. DEM used to process the data -This is a copy of the Digital Elevation Model (DEM) layer used for processing. This layer is tagged with _dem.tif, and is a 32-bit float GeoTIFF. +This is a copy of the Digital Elevation Model (DEM) layer used for processing. This layer is tagged with _dem.tif, and is a 32-bit float GeoTIFF. Pixel values indicate the elevation in meters. The source DEM has a geoid correction applied before it is used for processing, so height values in this file will differ from the source DEM. The DEM is down-sampled to twice the pixel spacing of the desired InSAR output pixel spacing to smooth it before processing. As such, an 80-m InSAR product requires the DEM to be down-sampled to a pixel spacing of 160 m. It is provided in the same pixel spacing/alignment and projected to the same UTM Zone as the interferogram files. From 63a947ca2790c4b1e3fe85c3784636e5f14b96a4 Mon Sep 17 00:00:00 2001 From: hjkristenson Date: Thu, 27 Jul 2023 11:49:32 -0800 Subject: [PATCH 7/8] move reference to DEM file units to a different part of the RTC readme --- hyp3_gamma/metadata/templates/rtc/readme.md.txt.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hyp3_gamma/metadata/templates/rtc/readme.md.txt.j2 b/hyp3_gamma/metadata/templates/rtc/readme.md.txt.j2 index 6f6fd27b..e7d1526b 100644 --- a/hyp3_gamma/metadata/templates/rtc/readme.md.txt.j2 +++ b/hyp3_gamma/metadata/templates/rtc/readme.md.txt.j2 @@ -97,11 +97,11 @@ KMZ files are generated for use in Google Earth and other compatible application ------------- ## 3. DEM used to correct the data -The Digital Elevation Model (DEM) used for RTC processing can optionally be included in the product package. This layer is tagged with _dem.tif, and is provided in 16-bit signed integer format. Note that the actual RTC correction is performed using a 32-bit float version, but this file has been converted to 16-bit to reduce file size. +The Digital Elevation Model (DEM) used for RTC processing can optionally be included in the product package. This layer is tagged with _dem.tif, and is provided in 16-bit signed integer format. Note that the actual RTC correction is performed using a 32-bit float version, but this file has been converted to 16-bit to reduce file size. Pixel values indicate the elevation in meters. The source DEM has a geoid correction applied before it is used for RTC, so elevation values in this file will differ from the source DEM. It is provided in the same pixel spacing/alignment as the RTC product. **The pixel spacing of the DEM included in the product package is not a reflection of the resolution of the source DEM, which is resampled to match the pixel spacing of the RTC product.** The pixel spacing of the adjusted DEM included in this product package is {{ pixel_spacing|int }} meters. -The DEM used for this product is {{ dem_name }}. Cell values of the DEM indicate the elevation in meters. The DEM has a native pixel spacing of {{ dem_pixel_spacing(dem_name) }}. {{ dem_blurb(dem_name) }} +The DEM used for this product is {{ dem_name }}. The DEM has a native pixel spacing of {{ dem_pixel_spacing(dem_name) }}. {{ dem_blurb(dem_name) }} {% if dem_blurb(dem_name) %} *Refer to the _dem.tif.xml file for additional information about the specific DEM included with this product, including use and citation requirements.* From a1e9821fa31b2b9b9375c63cff8b6222c1b5bc91 Mon Sep 17 00:00:00 2001 From: hjkristenson Date: Thu, 27 Jul 2023 11:59:54 -0800 Subject: [PATCH 8/8] update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6fe3478..cfedadb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [6.2.3] ### Added -- the DEM unit in meters to the readme.md.txt file in the RTC product +- References to the DEM pixel value unit (meters) in the readme.md.txt file for the RTC and InSAR products ## [6.2.2]