I have an import from Revit to IFC and I can not find any property of the ifcSpace objects that show me which floor they are on.
How to know to which level a ifcspace is?
Thanks!!!
I have an import from Revit to IFC and I can not find any property of the ifcSpace objects that show me which floor they are on.
How to know to which level a ifcspace is?
Thanks!!!
Hi @fisadmaster, as far as I know, in the IFC objects hierarchy, each IfcSpace feature is a child of an IfcBuildingStorey feature, and the "ifc_parent_unique_id" of an IfcSpace feature points to the "ifc_unique_id" of its parent IfcBuildingStorey feature.
Therefore, for example, you can merge the attributes of IfcBuildingStorey to corresponding IfcSpace features with the FeatureMerger, like this.