Skip to content

Commit 00d6f07

Browse files
committed
Removed deprecated fields, require alternative external fields
1 parent a2ff5ea commit 00d6f07

File tree

3 files changed

+10
-16
lines changed

3 files changed

+10
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222

2323
- Fixed and updated examples
2424

25+
### Removed
26+
27+
- `sar:product_type` in favor of `product:type`
28+
2529
## [v1.1.0] - 2024-12-18
2630

2731
### Added

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,15 @@ To describe frame start and end times, use the
5252
| sar:observation_direction | string | Antenna pointing direction relative to the flight trajectory of the satellite, either `left` or `right`. |
5353
| sar:relative_burst | number | Identification number that uniquely identifies a burst cycle within each repeat cycle. |
5454
| sar:beam_ids | \[string] | Composition of the swath of the SAR acquision referencing the beam identifiers. |
55-
| sar:product_type | string | ***DEPRECATED** in favor of [`product:type`](https://github.com/stac-extensions/product).* See [Product type](#product-type). |
56-
| sar:instrument_mode | string | ***DEPRECATED** in favor of [`altm:instrument_mode`](https://github.com/stac-extensions/altimetry).* See [Instrument details](#instrument-details). |
5755

5856
> \[!CAUTION]
5957
>
6058
> - v1.0 of the extension did require `sar:product_type` and `sar:instrument_mode`.
61-
> - v1.1 deprecates `sar:product_type` and it's not required any longer, but
59+
> - v1.1 deprecated `sar:product_type` and it's not required any longer, but
6260
> [`product:type`](https://github.com/stac-extensions/product) is **strongly recommended**.
63-
> - v1.2 deprecates `sar:instrument_mode` and it's not required any longer, but
61+
> - v1.2 deprecated `sar:instrument_mode` and it's not required any longer, but
6462
> [`altm:instrument_mode` and `altm:instrument_type`](https://github.com/stac-extensions/altimetry) are **strongly recommended**.
65-
> - v2.0 may require `product:type`, `altm:instrument_mode`, and `altm:instrument_type` as part of this extension and is going to remove `sar:product_type` and `sar:instrument_mode`.
63+
> - v2.0 requires `product:type`, `altm:instrument_mode` as part of this extension and is going to remove `sar:product_type` and `sar:instrument_mode`.
6664
6765
### Additional Field Information
6866

json-schema/schema.json

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@
3333
{
3434
"required": [
3535
"sar:frequency_band",
36-
"sar:polarizations"
36+
"sar:polarizations",
37+
"altm:instrument_mode",
38+
"product:type"
3739
],
3840
"properties": {
3941
"sar:polarizations": {
@@ -120,16 +122,6 @@
120122
"$ref": "#/definitions/polarizations"
121123
}
122124
},
123-
"sar:product_type": {
124-
"title": "Product type",
125-
"type": "string",
126-
"minLength": 1,
127-
"examples": [
128-
"SSC",
129-
"MGD",
130-
"SGC"
131-
]
132-
},
133125
"sar:resolution_range": {
134126
"title": "Resolution range (m)",
135127
"type": "number",

0 commit comments

Comments
 (0)