Skip to content

Commit

Permalink
Merge pull request #67 from CesiumGS/add-missing-schema-id
Browse files Browse the repository at this point in the history
Add missing schema IDs
  • Loading branch information
lilleyse authored May 13, 2024
2 parents 006be85 + 48f6319 commit a8d4e1f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extensions" : {
"EXT_structural_metadata" : {
"schema" : {
"id": "ComplexTypes",
"classes" : {
"exampleMetadataClass" : {
"name" : "Example metadata class",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,35 +1,38 @@
{
"classes" : {
"exampleMetadataClass" : {
"name" : "Example metadata class",
"description" : "An example metadata class for property attributes",
"properties" : {
"intensity" : {
"name" : "Example intensity property",
"description" : "An example property for the intensity, with component type FLOAT32",
"type" : "SCALAR",
"componentType" : "FLOAT32"
},
"classification" : {
"name" : "Example classification property",
"description" : "An example property for the classification, with the classificationEnumType",
"type" : "ENUM",
"enumType" : "classificationEnumType"
}
"id": "PropertyAttributesPointCloud",
"classes": {
"exampleMetadataClass": {
"name": "Example metadata class",
"description": "An example metadata class for property attributes",
"properties": {
"intensity": {
"name": "Example intensity property",
"description": "An example property for the intensity, with component type FLOAT32",
"type": "SCALAR",
"componentType": "FLOAT32"
},
"classification": {
"name": "Example classification property",
"description": "An example property for the classification, with the classificationEnumType",
"type": "ENUM",
"enumType": "classificationEnumType"
}
}
},
"enums" : {
"classificationEnumType" : {
"valueType": "UINT16",
"values" : [ {
"name" : "MediumVegetation",
"value" : 0
}, {
"name" : "Buildings",
"value" : 1
} ]
}
}
},
"enums": {
"classificationEnumType": {
"valueType": "UINT16",
"values": [
{
"name": "MediumVegetation",
"value": 0
},
{
"name": "Buildings",
"value": 1
}
]
}
}
}

0 comments on commit a8d4e1f

Please sign in to comment.