Skip to content

Commit

Permalink
Merge pull request #1898 from ASFHyP3/update-water-map
Browse files Browse the repository at this point in the history
Update WATER_MAP_TEST
  • Loading branch information
jhkennedy authored Oct 26, 2023
2 parents 489405f + ed1fd1e commit becf161
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +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).

## [4.2.2]
### Changed
## [4.3.0]
### Added
- An `iterative_min_size` parameter has been added to the `WATER_MAP_TEST` job spec.
#### Changed
- For `WATER_MAP_TEST` jobs, the default `minimization_metric` is now `ts`.
- Use Amazon Linux 2023 AMI in non-Earthdata Cloud environments

## [4.2.1]
Expand Down
10 changes: 9 additions & 1 deletion job_spec/WATER_MAP_TEST.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,16 @@ WATER_MAP_TEST:
description: Maximum bound used for iterative method. Ignored when flood_depth_estimator is None.
default: 15
type: integer
iterative_min_size:
api_schema:
description: Minimum size of a connected waterbody in pixels for calculating flood depths with the iterative estimator
default: 0
type: integer
minimum: 0
minimization_metric:
api_schema:
description: Evaluation method to minimize during the iterative flood depth calculation. Options include a Fowlkes-Mallows index (fmi) or a threat score (ts). Only used when flood_depth_estimator is iterative.
default: fmi
default: ts
type: string
enum:
- fmi
Expand Down Expand Up @@ -187,6 +193,8 @@ WATER_MAP_TEST:
- Ref::iterative_min
- --iterative-max
- Ref::iterative_max
- --iterative-min-size
- Ref::iterative_min_size
- --minimization-metric
- Ref::minimization_metric
timeout: 86400
Expand Down

0 comments on commit becf161

Please sign in to comment.