(ifc_file: ifcopenshell.file, element: ifcopenshell.entity_instance)
| 82 | |
| 83 | |
| 84 | def get_storey_data(ifc_file: ifcopenshell.file, element: ifcopenshell.entity_instance) -> dict[str, Any]: |
| 85 | return { |
| 86 | "Name": element.Name, |
| 87 | "ClassificationIdentification": "Level", |
| 88 | "ClassificationName": get_classification_name(element), |
| 89 | "OrganizationName": get_owner_name(element), |
| 90 | "CreationDate": get_owner_creation_date(element), |
| 91 | "ModelSoftware": get_owner_application(element), |
| 92 | "ModelObject": element.is_a(), |
| 93 | "ModelID": element.GlobalId, |
| 94 | "Elevation": ifcopenshell.util.placement.get_storey_elevation(element), |
| 95 | } |
| 96 | |
| 97 | |
| 98 | def get_space_data(ifc_file: ifcopenshell.file, element: ifcopenshell.entity_instance) -> dict[str, Any]: |
nothing calls this directly
no test coverage detected