-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
STAC CI
committed
Aug 5, 2024
1 parent
eaa20bd
commit 6bd63c2
Showing
4 changed files
with
192 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/bands.json", | ||
"title": "Bands Field", | ||
"type": "object", | ||
"properties": { | ||
"bands": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"allOf": [ | ||
{ | ||
"$ref": "common.json" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/data-values.json#", | ||
"title": "Fields related to data values", | ||
"type": "object", | ||
"properties": { | ||
"data_type": { | ||
"title": "Data type of the values", | ||
"type": "string", | ||
"enum": [ | ||
"int8", | ||
"int16", | ||
"int32", | ||
"int64", | ||
"uint8", | ||
"uint16", | ||
"uint32", | ||
"uint64", | ||
"float16", | ||
"float32", | ||
"float64", | ||
"cint16", | ||
"cint32", | ||
"cfloat32", | ||
"cfloat64", | ||
"other" | ||
] | ||
}, | ||
"nodata": { | ||
"title": "No data value", | ||
"oneOf": [ | ||
{ | ||
"type": "number" | ||
}, | ||
{ | ||
"type": "string", | ||
"enum": [ | ||
"nan", | ||
"inf", | ||
"-inf" | ||
] | ||
} | ||
] | ||
}, | ||
"statistics": { | ||
"title": "Statistics", | ||
"type": "object", | ||
"minProperties": 1, | ||
"properties": { | ||
"minimum": { | ||
"title": "Minimum value of all the data values", | ||
"type": "number" | ||
}, | ||
"maximum": { | ||
"title": "Maximum value of all the data values", | ||
"type": "number" | ||
}, | ||
"mean": { | ||
"title": "Mean value of all the data values", | ||
"type": "number" | ||
}, | ||
"stddev": { | ||
"title": "Standard deviation value of all the data values", | ||
"type": "number" | ||
}, | ||
"count": { | ||
"title": "Total number of all data values", | ||
"type": "integer", | ||
"minimum": 0 | ||
}, | ||
"valid_percent": { | ||
"title": "Percentage of valid (not nodata) values", | ||
"type": "number", | ||
"minimum": 0, | ||
"maximum": 100 | ||
} | ||
} | ||
}, | ||
"unit": { | ||
"title": "Unit denomination of the data value", | ||
"type": "string" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters