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
- Added `geometry_type` property to Column Object
- Added `table:primary_datetime` #12
- Allow most fields also in the Asset Object #9
- Allow more properties in the Column Object #8
- Deprecated `table:storage_options`: The property is not specific to tables but specific to fsspec. It should be generalized.
- Deprecated `table:tables`: Tables in collections should be summarized using Item Asset Definitions or Collection Summaries instead. #10
- Clarified usage of common metadata and extensions in the Column Object #8#1
- Improved schema
| description | string | Detailed multi-line description to explain the dimension. CommonMark 0.29 syntax MAY be used for rich text representation. |
42
-
| type | string | Data type of the column. If using a file format with a type system (like Parquet), we recommend you use those types. |
78
+
| Field Name | Type | Description |
79
+
| ------------- | ------ | ----------- |
80
+
| name | string |**REQUIRED**. The column name. |
81
+
| description | string | Detailed multi-line description to explain the dimension. CommonMark 0.29 syntax MAY be used for rich text representation. |
82
+
| type | string | Native data type of the column. If using a file format with a type system (like Parquet), we recommend you use those types. |
83
+
| geometry_type | string | Geometry type provided by the column. Only applies to geometry columns, e.g. the column identified by the `table:primary_geometry`. |
43
84
44
-
## *Asset Object* fields
85
+
Other properties such as `description`, `license`, `unit`, `data_type` and `statistics` from
86
+
[STAC common metadata](https://github.com/radiantearth/stac-spec/blob/master/commons/common-metadata.md)
87
+
can be used in the Column Object.
45
88
46
-
The following fields can be used for assets (in the [`Asset Object`](https://github.com/radiantearth/stac-spec/blob/master/item-spec/item-spec.md#asset-object)).
89
+
`type` and `data_type` describe the same information, but `type` should use the native name in the given file format and `data_type` describes the [standardized data type name according to the STAC specification](https://github.com/radiantearth/stac-spec/blob/master/commons/common-metadata.md#data-types).
@@ -85,7 +125,7 @@ For a dataset consisting of a single table or many tables with the same schema (
85
125
different points in time), you might include `table:columns` on the `Collection` itself, or both the `Collection` and `items`.
86
126
87
127
For datasets with many tables (for example, [USF Forest Inventory and Analysis](https://github.com/microsoft/AIforEarthDataSets/blob/main/data/forest-inventory-and-analysis.md)),
88
-
we recommend cataloging just the *tables* at the Collection level in `table:tables`, and cataloging the the columns at just the `Item` level in `table:columns`
128
+
we recommend cataloging the the columns at just the `Item` level in `table:columns`
0 commit comments