forked from CesiumGS/3d-tiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatistics.class.property.schema.json
91 lines (91 loc) · 4.37 KB
/
statistics.class.property.schema.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
85
86
87
88
89
90
91
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "statistics.class.property.schema.json",
"title": "Property Statistics",
"type": "object",
"description": "Statistics about property values.",
"allOf": [
{
"$ref": "tilesetProperty.schema.json"
}
],
"properties": {
"min": {
"allOf": [
{
"$ref": "definitions.schema.json#/definitions/numericValue"
}
],
"description": "The minimum property value occurring in the tileset. Only applicable to `SCALAR`, `VECN`, and `MATN` types. This is the minimum of all property values, after the transforms based on the `normalized`, `offset`, and `scale` properties have been applied."
},
"max": {
"allOf": [
{
"$ref": "definitions.schema.json#/definitions/numericValue"
}
],
"description": "The maximum property value occurring in the tileset. Only applicable to `SCALAR`, `VECN`, and `MATN` types. This is the maximum of all property values, after the transforms based on the `normalized`, `offset`, and `scale` properties have been applied."
},
"mean": {
"allOf": [
{
"$ref": "definitions.schema.json#/definitions/numericValue"
}
],
"description": "The arithmetic mean of property values occurring in the tileset. Only applicable to `SCALAR`, `VECN`, and `MATN` types. This is the mean of all property values, after the transforms based on the `normalized`, `offset`, and `scale` properties have been applied."
},
"median": {
"allOf": [
{
"$ref": "definitions.schema.json#/definitions/numericValue"
}
],
"description": "The median of property values occurring in the tileset. Only applicable to `SCALAR`, `VECN`, and `MATN` types. This is the median of all property values, after the transforms based on the `normalized`, `offset`, and `scale` properties have been applied."
},
"standardDeviation": {
"allOf": [
{
"$ref": "definitions.schema.json#/definitions/numericValue"
}
],
"description": "The standard deviation of property values occurring in the tileset. Only applicable to `SCALAR`, `VECN`, and `MATN` types. This is the standard deviation of all property values, after the transforms based on the `normalized`, `offset`, and `scale` properties have been applied."
},
"variance": {
"allOf": [
{
"$ref": "definitions.schema.json#/definitions/numericValue"
}
],
"description": "The variance of property values occurring in the tileset. Only applicable to `SCALAR`, `VECN`, and `MATN` types. This is the variance of all property values, after the transforms based on the `normalized`, `offset`, and `scale` properties have been applied."
},
"sum": {
"allOf": [
{
"$ref": "definitions.schema.json#/definitions/numericValue"
}
],
"description": "The sum of property values occurring in the tileset. Only applicable to `SCALAR`, `VECN`, and `MATN` types. This is the sum of all property values, after the transforms based on the `normalized`, `offset`, and `scale` properties have been applied."
},
"occurrences": {
"type": "object",
"description": "A dictionary, where each key corresponds to an enum `name` and each value is the number of occurrences of that enum. Only applicable when `type` is `ENUM`. For fixed-length arrays, this is an array of component-wise occurrences.",
"minProperties": 1,
"additionalProperties": {
"oneOf": [
{
"type": "integer"
},
{
"type": "array",
"items": {
"type": "integer"
},
"minItems": 1
}
]
}
},
"extensions": {},
"extras": {}
}
}