(ifc_file: ifcopenshell.file, element: ifcopenshell.entity_instance)
| 174 | |
| 175 | |
| 176 | def get_system_data(ifc_file: ifcopenshell.file, element: ifcopenshell.entity_instance) -> dict[str, Any]: |
| 177 | return { |
| 178 | "Name": element.Name, |
| 179 | "Description": element.Description, |
| 180 | "ClassificationIdentification": get_classification_identification(element), |
| 181 | "ClassificationName": get_classification_name(element), |
| 182 | "OrganizationName": get_owner_name(element), |
| 183 | "CreationDate": get_owner_creation_date(element), |
| 184 | "ModelSoftware": get_owner_application(element), |
| 185 | "ModelID": element.GlobalId, |
| 186 | } |
| 187 | |
| 188 | |
| 189 | def get_owner_name(element: ifcopenshell.entity_instance) -> Union[str, None]: |
nothing calls this directly
no test coverage detected