Skip to content

Commit

Permalink
Merge pull request #1981 from ASFHyP3/develop
Browse files Browse the repository at this point in the history
Release v4.5.1 -- output_resolution numeric type fix
  • Loading branch information
jtherrmann authored Dec 22, 2023
2 parents 0c2f230 + dbcf1d0 commit 1f55d18
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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).

## [4.5.1]
### Fixed
- `output_resolution` in the `INSAR_ISCE_TEST` job spec is now correctly specified as an int instead of number, which can be a float or an int.

## [4.5.0]
### Changed
- Update `INSAR_ISCE` and `INSAR_ISCE_TEST` job spec for GUNW version 3+ standard and custom products
Expand Down
8 changes: 4 additions & 4 deletions job_spec/INSAR_ISCE_TEST.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ INSAR_ISCE_TEST:
minimum: 0
output_resolution:
api_schema:
default: 90.0
default: 90
description: Desired output resolution in meters of GUNW product; standard ARIA products requires resolution to be set to 90 m.
type: number
type: integer
enum:
- 30.0
- 90.0
- 30
- 90
unfiltered_coherence:
api_schema:
default: true
Expand Down

0 comments on commit 1f55d18

Please sign in to comment.