Skip to content

Commit

Permalink
geometries -> geometry
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Mar 10, 2023
1 parent a477e10 commit e5e5de9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ A vector dimension that defines a spatial dimension based on geometries.

| Field Name | Type | Description |
| ---------------- | -------------- | ------------------------------------------------------------ |
| type | string | **REQUIRED.** Type of the dimension, always `geometries`. |
| type | string | **REQUIRED.** Type of the dimension, always `geometry`. |
| axes | \[string] | Axes of the vector dimension as an ordered set of `x`, `y` and `z`. Defaults to `x` and `y`. |
| description | string | Detailed multi-line description to explain the dimension. [CommonMark 0.29](http://commonmark.org/) syntax MAY be used for rich text representation. |
| bbox | \[number] | **REQUIRED.** A single bounding box of the geometries as defined for [STAC Collections](https://github.com/radiantearth/stac-spec/blob/master/collection-spec/collection-spec.md#spatial-extent-object), but not nested. |
Expand All @@ -107,7 +107,7 @@ An additional dimension that is not `spatial`, but may be `temporal` if the data

| Field Name | Type | Description |
| ---------------- | ----------------- | ------------------------------------------------------------ |
| type | string | **REQUIRED.** Custom type of the dimension, never `spatial` or `geometries`. |
| type | string | **REQUIRED.** Custom type of the dimension, never `spatial` or `geometry`. |
| description | string | Detailed multi-line description to explain the dimension. [CommonMark 0.29](http://commonmark.org/) syntax MAY be used for rich text representation. |
| extent | \[number\|null] | If the dimension consists of [ordinal](https://en.wikipedia.org/wiki/Level_of_measurement#Ordinal_scale) values, the extent (lower and upper bounds) of the values as two-element array. Use `null` for open intervals. |
| values | \[number\|string] | An ordered list of all values, especially useful for [nominal](https://en.wikipedia.org/wiki/Level_of_measurement#Nominal_level) values. |
Expand Down
2 changes: 1 addition & 1 deletion examples/vector.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
"end_datetime": "2018-01-01T00:00:00Z",
"cube:dimensions": {
"vector": {
"type": "geometries",
"type": "geometry",
"bbox": [
-122.51575469970703,
37.50373410549169,
Expand Down
4 changes: 2 additions & 2 deletions json-schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
"not": {
"enum": [
"spatial",
"geometries"
"geometry"
]
}
},
Expand Down Expand Up @@ -381,7 +381,7 @@
"properties": {
"type": {
"type": "string",
"const": "geometries"
"const": "geometry"
},
"axes": {
"type": "array",
Expand Down

0 comments on commit e5e5de9

Please sign in to comment.