For now it is enough with building height and roof type and street width..
The building heights are known values so imageLayer route would not be useful.
Perhaps set them with Python.
Is it to follow the Python scripting page in the manual and do? :
>>>
//Assuming a block is selected
>>> block = ce.getObjectsFrom(ce.selection)[0]
>>> ce.setAttribute(block,"/ce/block/shapeCreation", False)
>>> ce.setAttributeSource(block,"/ce/block/shapeCreation", "USER")
>>> block = ce.getObjectsFrom(ce.selection)[0]
>>> ce.setAttribute(block,"buildingHeight", 27)
//??
Does this generate a .gdb file or is the attribute than handled internally?
Cheers!
Hopefully it will get me started to do more advanced...