Hi @mbarzegar,
The IFC reader uses the relations to build the add the property sets to the features, so the info is there, but not explicitly. You could decompose the property sets from the geometry to rebuild the relationships. The relationships between the features (ie. Window -> Opening -> Wall) are stored using the ifc_parent_unique_id, which corresponds to the parent feature's ifc_unique_id.
Alternatively, you could try using deprecated reader, which is available as an option in the IFC reader parameters. This older version of the reader outputs the relationships explicitly, but has not been kept current, and may not read all IFC files correctly.
Hi @mbarzegar,
The IFC reader uses the relations to build the add the property sets to the features, so the info is there, but not explicitly. You could decompose the property sets from the geometry to rebuild the relationships. The relationships between the features (ie. Window -> Opening -> Wall) are stored using the ifc_parent_unique_id, which corresponds to the parent feature's ifc_unique_id.
Alternatively, you could try using deprecated reader, which is available as an option in the IFC reader parameters. This older version of the reader outputs the relationships explicitly, but has not been kept current, and may not read all IFC files correctly.
Thank you so much for your answer. The deprecated reader worked for me and solved my problem.