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: best-practices.md
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -728,8 +728,7 @@ database, but it could just as easily be a server-based process.
728
728
## How to Differentiate STAC Files
729
729
730
730
Any tool that crawls a STAC implementation or encounters a STAC file in the wild needs a clear way to determine if it is an Item,
731
-
Collection, Catalog or [ItemCollection](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.1/fragments/itemcollection)
732
-
(part of the [STAC API spec](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.1)). As of 1.0.0 this is done primarily
731
+
Collection or Catalog. As of 1.0.0 this is done primarily
733
732
with the `type` field, and secondarily in Items with `stac_version`, or optionally the `rel` of the link to it.
734
733
735
734
```shell
@@ -739,8 +738,6 @@ else if type is 'Catalog'
739
738
=> Catalog
740
739
elseiftype is 'Feature' and stac_version is defined
741
740
=> Item
742
-
elseiftype is 'FeatureCollection' and stac_version is defined
0 commit comments