Skip to content
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

- `s1:processing_datetime` in favor of `processing:datetime`

### Removed

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ The fields in the table below can be used in these parts of STAC documents:
| s1:datatake_id | string | e.g. `420895` |
| s1:instrument_configuration_ID | string | e.g. `7` |
| s1:orbit_source | string | e.g. `PREORB` |
| s1:processing_datetime | string | RFC3339 datetime in UTC |
| s1:product_identifier | string | e.g. `S1A_IW_GRDH_1SDV_20240318T153023_20240318T153035_053038_066C1F_F913` |
| s1:product_timeliness | string | e.g. `NRT-3h`, `Fast-24h` |
| s1:resolution | string | e.g. `high` |
| s1:slice_number | string | e.g. `17` |
| s1:total_slices | string | e.g. `17` |
| s1:processing_datetime | string | **DEPRECATED** Use processing:datetime instead |
| s1:processing_level | string | **DEPRECATED** Use processing:level instead |
| s1:shape | [integer] | **DEPRECATED** Use proj:shape instead |

Expand Down
4 changes: 2 additions & 2 deletions examples/earthsearch-s1-grd.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
12777
],
"s1:product_identifier": "S1A_EW_GRDM_1SDH_20240325T094655_20240325T094811_053136_066FDB_411C",
"s1:processing_datetime": "2024-03-25T11:02:44.000000Z",
"processing:datetime": "2024-03-25T11:02:44.000000Z",
"storage:platform": "AWS",
"storage:region": "eu-central-1",
"storage:requester_pays": true,
Expand Down Expand Up @@ -330,7 +330,7 @@
"https://stac-extensions.github.io/projection/v1.1.0/schema.json",
"https://stac-extensions.github.io/storage/v1.0.0/schema.json",
"https://stac-extensions.github.io/sar/v1.0.0/schema.json",
"https://stac-extensions.github.io/processing/v1.1.0/schema.json",
"https://stac-extensions.github.io/processing/v1.2.0/schema.json",
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
"https://stac-extensions.github.io/sentinel-1/v0.1.0/schema.json"
Expand Down
1 change: 0 additions & 1 deletion json-schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
{"required": ["s1:datatake_id"]},
{"required": ["s1:instrument_configuration_ID"]},
{"required": ["s1:orbit_source"]},
{"required": ["s1:processing_datetime"]},
{"required": ["s1:product_identifier"]},
{"required": ["s1:product_timeliness"]},
{"required": ["s1:resolution"]},
Expand Down