CitygmlModel

class CitygmlModel(val name: Option<String>, val boundingShape: BoundingShape, val cityObjects: List<AbstractCityObject>) : AbstractModel

Implementation of the CityGML data model according to version 2.0. See the official page from the Open Geospatial Consortium (OGC) for more.

Parameters

name

name of the model

boundingShape

bounding shape containing coordinate reference system

cityObjects

list of city objects

Constructors

Link copied to clipboard
constructor(name: Option<String>, boundingShape: BoundingShape, cityObjects: List<AbstractCityObject>)

Properties

Link copied to clipboard
val boundingShape: BoundingShape
Link copied to clipboard
val cityObjects: List<AbstractCityObject>
Link copied to clipboard
val name: Option<String>