Skip to content

Commit ecd9584

Browse files
committed
schema changes
1 parent 8560d5e commit ecd9584

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- **Title:** Rendering
44
- **Identifier:** <https://stac-extensions.github.io/render/v1.0.0/schema.json>
5-
- **Field Name Prefix:** rdr
5+
- **Field Name Prefix:** renders
66
- **Scope:** Item, Collection
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal
88
- **Owner**: @emmanuelmathot @abarciauskas-bgse @smohiudd
@@ -113,8 +113,7 @@ by simply specifying the `url` and `assets` query parameters.
113113
| `colormap` | `colormap` | Color map JSON definition as defined in `colormap` object of the `asset` (overrides `colormap_name` if present ) |
114114
| `color_formula` | `color_formula` | Color formula as defined in `color_formula` field of the `asset` |
115115
| `resampling` | `resampling` | Resampling method to use when reprojecting the raster. |
116-
117-
Next sections describe some examples of titiler integration.
116+
| `bidx` | `bidx` | Dataset band indexes |
118117

119118
#### Shortwave Infra-red visual thermal signature example
120119

json-schema/schema.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@
107107
{"type": "object", "required": ["color_formula"]},
108108
{"type": "object", "required": ["resampling"]},
109109
{"type": "object", "required": ["expression"]},
110-
{"type": "object", "required": ["minmax_zoom"]}
110+
{"type": "object", "required": ["minmax_zoom"]},
111+
{"type": "object", "required": ["bidx"]}
111112
]
112113
},
113114
"fields": {
@@ -136,7 +137,7 @@
136137
}
137138
},
138139
"nodata": {
139-
"type": "number"
140+
"type": ["number","string"]
140141
},
141142
"colormap_name": {
142143
"type": "string"
@@ -158,6 +159,12 @@
158159
"items": {
159160
"type": "number"
160161
}
162+
},
163+
"bidx":{
164+
"type": "array",
165+
"items": {
166+
"type": "number"
167+
}
161168
}
162169
},
163170
"additionalProperties": true

0 commit comments

Comments
 (0)