Skip to content

Commit

Permalink
Merge pull request #2431 from ASFHyP3/develop
Browse files Browse the repository at this point in the history
Release v7.9.1
  • Loading branch information
AndrewPlayer3 authored Sep 24, 2024
2 parents 7898d89 + 505712e commit 777d7ee
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [7.9.1]

### Changed
- The `SRG_GSLC` job now takes in a `--bounds` argument that determines the extent of the DEM used in back projection.

## [7.9.0]

### Changed
Expand Down
20 changes: 19 additions & 1 deletion job_spec/SRG_GSLC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@ SRG_GSLC:
example: S1A_IW_RAW__0SDV_20231229T134404_20231229T134436_051870_064437_5F38
bucket_prefix:
default: '""'
bounds:
default: '""'
api_schema:
type: array
default: [0.0, 0.0, 0.0, 0.0]
minItems: 4
maxItems: 4
example:
- -116.583
- 35.714
- -113.209
- 38.138
items:
description: min lon, min lat, max lon, max lat in EPSG:4326
type: number
example: -116.583
validators: []
cost_profiles:
DEFAULT:
Expand All @@ -32,10 +48,12 @@ SRG_GSLC:
tasks:
- name: ''
image: ghcr.io/asfhyp3/hyp3-srg
image_tag: 0.7.0.gpu
image_tag: latest.gpu
command:
- ++process
- back_projection
- --bounds
- Ref::bounds
- --gpu
- --bucket
- '!Ref Bucket'
Expand Down
10 changes: 5 additions & 5 deletions requirements-all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
-r requirements-apps-start-execution-worker.txt
-r requirements-apps-disable-private-dns.txt
-r requirements-apps-update-db.txt
boto3==1.35.15
boto3==1.35.24
jinja2==3.1.4
moto[dynamodb]==5.0.14
pytest==8.3.2
moto[dynamodb]==5.0.15
pytest==8.3.3
PyYAML==6.0.2
responses==0.25.3
flake8==7.1.1
flake8-import-order==0.18.2
flake8-blind-except==0.2.1
flake8-builtins==2.5.0
setuptools==74.1.2
setuptools==75.1.0
openapi-spec-validator==0.7.1
cfn-lint==1.12.4
cfn-lint==1.15.0
2 changes: 1 addition & 1 deletion requirements-apps-disable-private-dns.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
boto3==1.35.15
boto3==1.35.24
2 changes: 1 addition & 1 deletion requirements-apps-start-execution-manager.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
boto3==1.35.15
boto3==1.35.24
./lib/dynamo/
./lib/lambda_logging/
2 changes: 1 addition & 1 deletion requirements-apps-start-execution-worker.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
boto3==1.35.15
boto3==1.35.24
./lib/lambda_logging/

0 comments on commit 777d7ee

Please sign in to comment.