(ifc_file: ifcopenshell.file, element: ifcopenshell.entity_instance)
| 114 | |
| 115 | |
| 116 | def get_zone_data(ifc_file: ifcopenshell.file, element: ifcopenshell.entity_instance) -> dict[str, Any]: |
| 117 | zone, space = element |
| 118 | return { |
| 119 | "Name": zone.Name, |
| 120 | "SpaceName": space.Name, |
| 121 | "OrganizationName": get_owner_name(zone), |
| 122 | "CreationDate": get_owner_creation_date(zone), |
| 123 | "ModelSoftware": get_owner_application(zone), |
| 124 | "ModelID": zone.GlobalId, |
| 125 | } |
| 126 | |
| 127 | |
| 128 | def get_element_type_data(ifc_file: ifcopenshell.file, element: ifcopenshell.entity_instance) -> dict[str, Any]: |
nothing calls this directly
no test coverage detected