You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
8
8
## [Unreleased]
9
9
10
+
### Changed
11
+
- The first extent in a Collection is always the overall extent, followed by more specific extents. ([#1064](https://github.com/radiantearth/stac-spec/issues/1064), [opengeospatial/ogcapi-features#520](https://github.com/opengeospatial/ogcapi-features/pull/520))
12
+
10
13
## [v1.0.0-rc.2] - 2021-03-30
11
14
12
15
### Changed
@@ -20,6 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
20
23
21
24
### Fixed
22
25
26
+
- Examples
23
27
- Collection Assets were specified as required (only in written text, not in JSON Schema), but that was incorrectly copied over from the former `collection-assets` extension. Collection Assets are not required.
24
28
- Clarified that the values in summaries (both for ranges and sets of values) must follow the data type of the property they summarize. ([#1069](https://github.com/radiantearth/stac-spec/pull/1069))
| bbox |\[\[number]]|**REQUIRED.** Potential *spatial extents* covered by the Collection. |
170
170
171
-
**bbox**: Bounding Boxes of the assets represented by this Collection using either 2D or 3D geometries.
172
-
Each outer array element can be a separate bounding box, but it is recommended to only use multiple bounding boxes
173
-
if a union of them would then include a large uncovered area (e.g. the union of Germany and Chile).
171
+
**bbox**: Each outer array element can be a separate spatial extent describing the bounding Boxes of the assets represented by this Collection using either 2D or 3D geometries.
172
+
173
+
The first bounding box always describes the overall spatial extent of the data. All subsequent bounding boxes can be
174
+
used to provide a more precise description of the extent and identify clusters of data.
175
+
Clients only interested in the overall spatial extent will only need to access the first item in each array.
176
+
It is recommended to only use multiple bounding boxes if a union of them would then include a large uncovered area (e.g. the union of Germany and Chile).
174
177
175
178
The length of the inner array must be 2*n where n is the number of dimensions.
176
179
The array contains all axes of the southwesterly most extent followed by all axes of the northeasterly most extent specified in
@@ -190,8 +193,12 @@ The object describes the temporal extents of the Collection.
Copy file name to clipboardExpand all lines: item-spec/item-spec.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ inherited from GeoJSON.
63
63
| properties |[Properties Object](#properties-object)|**REQUIRED.** A dictionary of additional metadata for the Item. |
64
64
| links |\[[Link Object](#link-object)]|**REQUIRED.** List of link objects to resources and related URLs. A link with the `rel` set to `self` is strongly recommended. |
65
65
| assets | Map<string, [Asset Object](#asset-object)> |**REQUIRED.** Dictionary of asset objects that can be downloaded, each with a unique key. |
66
-
| collection | string | The `id` of the STAC Collection this Item references to (see [`collection` relation type](#relation-types)). This field is *required* if such a relation type is present. This field provides an easy way for a user to search for any Items that belong in a specified Collection. Must be a non-empty string. |
66
+
| collection | string | The `id` of the STAC Collection this Item references to (see [`collection` relation type](#relation-types)). This field is *required* if such a relation type is present and is *not allowed* otherwise. This field provides an easy way for a user to search for any Items that belong in a specified Collection. Must be a non-empty string. |
67
67
68
68
### Additional Field Information
69
69
@@ -195,7 +195,7 @@ This happens where there is not a clear official option, or where STAC uses an o
195
195
| self | STRONGLY RECOMMENDED. *Absolute* URL to the Item if it is available at a public URL. This is particularly useful when in a download package that includes metadata, so that the downstream user can know where the data has come from. |
196
196
| root | URL to the root STAC Catalog or Collection. |
197
197
| parent | URL to the parent STAC Catalog or Collection. |
198
-
| collection | STRONGLY RECOMMENDED. URL to a Collection. *Absolute* URLs should be used whenever possible. The referenced Collection is STRONGLY RECOMMENDED to implement the same STAC version as the Item. |
198
+
| collection | STRONGLY RECOMMENDED. URL to a Collection. *Absolute* URLs should be used whenever possible. The referenced Collection is STRONGLY RECOMMENDED to implement the same STAC version as the Item. A link with this `rel` type is *required* if the `collection` field in properties is present. |
199
199
| derived_from | URL to a STAC Item that was used as input data in the creation of this Item. |
200
200
201
201
A more complete list of potential `rel` types and their meaning in STAC can be found in the [Using Relation
0 commit comments