How deep is the City Object family of 2nd-level objects? #150
-
The For 1st level CityObjects it is clear that only 2nd level CityObjects can be their children. "CityObjects": {
"id-1": {
"type": "Building",
"geographicalExtent": [ 84710.1, 446846.0, -5.3, 84757.1, 446944.0, 40.9 ],
"attributes": {
"measuredHeight": 22.3,
"roofType": "gable",
"owner": "Elvis Presley"
},
"children": ["id-2"],
"geometry": [{...}]
},
"id-2": {
"type": "BuildingPart",
"parents": ["id-1"],
"children": ["id-3"],
...
},
"id-3": {
"type": "BuildingInstallation",
"parents": ["id-2"],
"children": ["id-4"],
...
},
"id-4": {
"type": "BuildingInstallation",
"parents": ["id-3"],
"children": ["id-5"],
...
},
"id-5": {
"type": "BuildingInstallation",
"parents": ["id-4"],
"children": ["id-6"],
...
},
// many many more of BuldingInstallation deep
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
No there is none. But what is the alternative? |
Beta Was this translation helpful? Give feedback.
No there is none.
But what is the alternative?