Hello.
I did not manage to get the model shown in aragog, only this Spider gbXML Viewer
resulted in heavily corrupted visualisation. Of course this might be a transposition problem citygml to gbXML, but I dout since the FZK Viewer works for the GML.
Many thanks for ideas
Hi @efficiciency1.st
if you use python there is the honeybee_vtk that you can use to generate interactive html viewer files.
from honeybee.model import Model
import honeybee_vtk
import honeybee_vtk.model
hbmodel = Model.from_file('model.hbjson')
model_vtk = honeybee_vtk.model.Model.from_hbjson(
hbmodel.to_hbjson('.', '.', 3))
model_vtk.to_html()
hopefully that is helpful
-trevor
1 Like