Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
eeeebb6
Bump ASFHyP3/actions from 0.18.1 to 0.19.0
dependabot[bot] May 19, 2025
27bf60f
Merge pull request #575 from ASFHyP3/dependabot/github_actions/ASFHyP…
jtherrmann May 20, 2025
59ae18f
Merge pull request #577 from ASFHyP3/main
jtherrmann May 23, 2025
74de089
Bump ASFHyP3/actions from 0.19.0 to 0.20.0
dependabot[bot] May 26, 2025
218c85d
add references to ingesting on-demand products to the archive
hjkristenson May 30, 2025
b9e6580
apply formatting updates from aria-dates branch
hjkristenson May 30, 2025
b3eb9f1
formatting updates
hjkristenson May 30, 2025
14a0324
add coverage threshold guidance
hjkristenson Jun 3, 2025
37eb36c
edit ARIA threshold language
hjkristenson Jun 3, 2025
19bf083
add VV-only disclaimer to ARIA GUNW product guide
hjkristenson Jun 3, 2025
12030a3
add polarization limitation to selection constraints
hjkristenson Jun 3, 2025
1cf8de5
add accessing products section
hjkristenson Jun 3, 2025
cae9a4a
adjust wording in intro
hjkristenson Jun 3, 2025
45dba93
adjust interoperability wording
hjkristenson Jun 3, 2025
2eb9519
adjust interoperability wording more
hjkristenson Jun 3, 2025
6d9c843
adjust wording in intro to on-demand products
hjkristenson Jun 3, 2025
5b69043
adjust wording in intro to on-demand products more
hjkristenson Jun 3, 2025
791b5c5
remove extra space
hjkristenson Jun 3, 2025
839d43e
change formatting of ordering on-demand products section
hjkristenson Jun 3, 2025
9d7e2ec
update changelog
hjkristenson Jun 3, 2025
312dab1
change word for clarity
hjkristenson Jun 3, 2025
b234043
correct product name
hjkristenson Jun 3, 2025
c79cfb4
Merge pull request #581 from ASFHyP3/aria-ingest
hjkristenson Jun 4, 2025
cf3e2c6
remove plural
hjkristenson Jun 4, 2025
b3eaf6d
update changelog
hjkristenson Jun 4, 2025
ad2d572
Merge pull request #583 from ASFHyP3/aria-edits
hjkristenson Jun 4, 2025
8b86ca7
remove reference to SDS
hjkristenson Jun 5, 2025
be1ceaa
remove reference to 90% coverage requirement
hjkristenson Jun 5, 2025
0f9035d
remove reference to 90% coverage constraint
hjkristenson Jun 5, 2025
55407ba
Merge pull request #585 from ASFHyP3/remove-90
hjkristenson Jun 5, 2025
b787183
update changelog
hjkristenson Jun 5, 2025
fa46aa2
remove ARIA GUNW ingest references from products page
hjkristenson Jun 5, 2025
4e0e2ea
remove access guidelines for archived on-demand products
hjkristenson Jun 5, 2025
2dbbfb6
edit wording on products page
hjkristenson Jun 5, 2025
852c76d
Merge pull request #586 from ASFHyP3/remove-ingest
hjkristenson Jun 5, 2025
822bf0e
Merge pull request #579 from ASFHyP3/dependabot/github_actions/ASFHyP…
jtherrmann Jun 6, 2025
c127ce4
Update credits.md
jhkennedy Jun 4, 2025
076dc1b
Update CHANGELOG.md
jhkennedy Jun 4, 2025
c7d4e89
Update docs/using/credits.md
jhkennedy Jun 5, 2025
98e760e
Update CHANGELOG.md
jhkennedy Jun 5, 2025
46e3b2d
fix spelling
jhkennedy Jun 5, 2025
5f53200
Merge pull request #584 from ASFHyP3/autorift-credits
jhkennedy Jun 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

jobs:
call-changelog-check-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.18.1
uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.20.0

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}

Copilot Autofix

AI 12 months ago

To fix the issue, add a permissions block at the root of the workflow file. Since this workflow is only triggering a reusable workflow for a changelog check, it likely only needs contents: read permissions. This ensures that the workflow has the minimal permissions required to function correctly.


Suggested changeset 1
.github/workflows/changelog.yml

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml
--- a/.github/workflows/changelog.yml
+++ b/.github/workflows/changelog.yml
@@ -2,2 +2,5 @@
 
+permissions:
+  contents: read
+
 on:
EOF
@@ -2,2 +2,5 @@

permissions:
contents: read

on:
Copilot is powered by AI and may make mistakes. Always verify output.
2 changes: 1 addition & 1 deletion .github/workflows/create-jira-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

jobs:
call-create-jira-issue-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.18.1
uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.20.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 }}

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
2 changes: 1 addition & 1 deletion .github/workflows/labeled-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

jobs:
call-labeled-pr-check-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.18.1
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.20.0

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}

Copilot Autofix

AI 12 months ago

To fix the issue, add a permissions block to the workflow to explicitly define the least privileges required for the workflow. Since the workflow interacts with pull requests, it likely requires pull-requests: write. If the reusable workflow requires additional permissions, they should also be included. The permissions block should be added at the root level of the workflow to apply to all jobs unless overridden.

Suggested changeset 1
.github/workflows/labeled-pr.yml

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/.github/workflows/labeled-pr.yml b/.github/workflows/labeled-pr.yml
--- a/.github/workflows/labeled-pr.yml
+++ b/.github/workflows/labeled-pr.yml
@@ -2,2 +2,5 @@
 
+permissions:
+  pull-requests: write
+
 on:
EOF
@@ -2,2 +2,5 @@

permissions:
pull-requests: write

on:
Copilot is powered by AI and may make mistakes. Always verify output.
2 changes: 1 addition & 1 deletion .github/workflows/release-template-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

jobs:
call-release-checklist-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.18.1
uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.20.0
secrets:
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

jobs:
call-release-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.18.1
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.20.0
with:
release_prefix: HyP3 Docs
secrets:
USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }}

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

jobs:
call-secrets-analysis-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.18.1
uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.20.0

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}

Copilot Autofix

AI 12 months ago

To fix the issue, add a permissions block to the root of the workflow file. This block should specify the least privileges required for the workflow to function correctly. Since the workflow calls a reusable workflow for secrets analysis, it likely only needs contents: read permissions. If additional permissions are required, they should be added based on the specific needs of the reusable workflow.

Suggested changeset 1
.github/workflows/static-analysis.yml

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml
--- a/.github/workflows/static-analysis.yml
+++ b/.github/workflows/static-analysis.yml
@@ -4,2 +4,5 @@
 
+permissions:
+  contents: read
+
 jobs:
EOF
@@ -4,2 +4,5 @@

permissions:
contents: read

jobs:
Copilot is powered by AI and may make mistakes. Always verify output.
2 changes: 1 addition & 1 deletion .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

jobs:
call-bump-version-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.18.1
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.20.0
secrets:
USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }}

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ 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.10.10]

### Changed
* The cost of autoRIFT jobs has been increased to 50 credits, from 25 credits, on the [credits](docs/using/credits.md) page.

## [0.10.9]

### Changed
Expand Down
227 changes: 172 additions & 55 deletions docs/guides/gunw_product_guide.md

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions docs/products.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,9 @@ There is an extensive archive of
but they are only generated in specific geographic locations. If the existing archive does not provide the
products you need, you can generate ARIA GUNW products on demand.

ARIA S1 GUNW products are delivered as netCDF files with 90-m pixel spacing. The On-Demand
products are generated using the same
ARIA S1 GUNW products are delivered as netCDF files with 90-m pixel spacing. Products generated On Demand use the same
[ISCE2](https://github.com/isce-framework/isce2#readme "https://github.com/isce-framework/isce2" ){target=_blank}-based
code used to generate the archived products, and standard ARIA S1 GUNW products
generated on demand are automatically added to the archive. This allows all users to access the On-Demand products
indefinitely, which is an exception to the 14-day availability period that applies to all other On-Demand products.
code used to generate the archived products to ensure interoperability.

The ARIA S1 GUNW products use a set [framing system](guides/gunw_product_guide.md#aria-frame-ids "ARIA Sentinel-1 GUNW
Product Guide: ARIA Frame IDs") to select consistent bursts from input Sentinel-1 IW SLCs to generate interferograms.
Expand Down
2 changes: 1 addition & 1 deletion docs/using/credits.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ allotment on jobs of that particular type.
| {{ table_indent(count=2) }} 14 pairs | 105 | {{ max_jobs_per_month(105) }} |
| {{ table_indent(count=2) }} 15 pairs | 110 | {{ max_jobs_per_month(110) }} |
| [**AutoRIFT**](https://its-live.jpl.nasa.gov/){target=_blank} | | |
| {{ table_indent() }} Standard product (120-m pixel spacing) | 25 | {{ max_jobs_per_month(25) }} |
| {{ table_indent() }} Standard product (120-m pixel spacing) | 50 | {{ max_jobs_per_month(50) }} |

The credit cost of a given job is roughly proportional to the computational resources required to process the job,
allowing us to distribute our resources more equitably.
Expand Down
Loading