-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathdata-values.json
84 lines (84 loc) · 1.96 KB
/
data-values.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.stacspec.org/v1.1.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"
}
}
}