Open alavenant opened 1 year ago
Hello
The CityTiler currently supports 4 thematic models: buildings, waterbodies, relief and bridges.
It would be really interesting to support other themes. The development time to support another theme depends on the geometry used to represent a CityObject:
I'll see how this work could be integrated in the roadmap of Py3DTilers. I think vegetation would be the more interesting new theme to support, but also the hardest one.
Supporting Transportation Model should be similar to relief since the geometry is MultiSurface. This can be easily triangulated and transformed into B3DM 3D Tiles.
PlantCover
of Vegetation Model shouldn't be really difficult since the geometry is either MultiSurface or MultiSolid. Those geometries can be easily triangulated and transformed into B3DM 3D Tiles.SolitaryVegetationObject
of Vegetation Model can be more difficult if the geometry is implicit (meaning the objects share the same geometry but have different positions). Supporting implicit geometry would require Py3DTiles/Py3DTilers to support I3DM 3D Tiles. Another solution would be to create one geometry per SolitaryVegetationObject
instance (and then use B3DM to represent those objects), but this solution may cause optimisation issues when visualizing the 3D Tiles.As well as vegetation, CityFurniture Model can use an implicit geometry, which requires to either supports I3DM or create an unique geometry per object.
Hello,
I'm using the citygml-tiler tool.
Have you plan to deal with other CityGML themes : transport, vegetation, cityfurniture, ...
Thanks,