Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update WATER_MAP_TEST #1898

Merged
merged 2 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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
Loading