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

cloud_cover and snow_cover calculation guidelines #26

Merged
merged 3 commits into from
Jul 8, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- `eo:bands` - use `bands` instead

### Fixed

- Clarified how the coverages `eo:cloud_cover` and `eo:snow_cover` should be computed

## [v1.1.0] - 2023-02-10

### Added
Expand Down
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ The fields in the table below can be used in these parts of STAC documents:

| Field Name | Type | Description |
| ---------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| eo:cloud_cover | number | Estimate of cloud cover, in %. |
| eo:snow_cover | number | Estimate of snow and ice cover, in %. |
| eo:cloud_cover | number | Estimate of cloud cover as a percentage (0-100). |
| eo:snow_cover | number | Estimate of snow and ice cover as a percentage (0-100). |
| eo:common_name | string | The name commonly used to refer to the band to make it easier to search for bands across instruments. See the [list of accepted common names](#common-band-names). |
| eo:center_wavelength | number | The center wavelength of the band, in micrometers (μm). |
| eo:full_width_half_max | number | Full width at half maximum (FWHM). The width of the band, as measured at half the maximum transmission, in micrometers (μm). |
Expand All @@ -51,17 +51,15 @@ The fields in the table below can be used in these parts of STAC documents:

### Coverages

#### eo:cloud_cover
This extension defines some common coverage types (cloud and snow/ice cover) as a percentages (0-100) of the entire scene:
- `eo:cloud_cover`
- `eo:snow_cover`

Estimate of cloud cover as a percentage (0-100) of the entire scene. If not available, the field should not be provided. Generally,
this value should be used in Item Properties rather than Item Assets, as an Item from an electro-optical source is a single snapshot
of the Earth, so the cloud cover value would apply to all assets.
It is important to consider only the valid data regions, excluding any "nodata" areas while calculating both the coverages.
If such information is not available or can't be calculated, the fields should not be provided.

##### eo:snow_cover

Estimate of snow and ice covered surfaces as a percentage (0-100) of the entire scene. If not available, the field should not be provided. Generally,
this value should be used in Item Properties rather than Item Assets, as an Item from an electro-optical source is a single snapshot
of the Earth, so the snow cover value would apply to all assets.
Usually, the properties should be used in Item Properties rather than Item Assets,
as an Item from an electro-optical source is a single snapshot of the Earth, so the coverages usually apply to all assets.

### Spectral Bands

Expand Down
Loading