mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-15 18:14:08 +00:00
80 lines
3.1 KiB
Python
80 lines
3.1 KiB
Python
|
|
# IfcCOBie - Extract COBie data from IFC to spreadsheets
|
|
# Copyright (C) 2019, 2020, 2021 Dion Moult <dion@thinkmoult.com>
|
|
#
|
|
# This file is part of IfcCOBie.
|
|
#
|
|
# IfcCOBie is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# IfcCOBie is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with IfcCOBie. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import json
|
|
import ifcopenshell
|
|
import ifcopenshell.util.selector
|
|
|
|
with open("../blenderbim/blenderbim/bim/schema/entity_descriptions.json") as f:
|
|
entity_descriptions = json.load(f)
|
|
with open("../blenderbim/blenderbim/bim/schema/enum_descriptions.json") as f:
|
|
enum_descriptions = json.load(f)
|
|
|
|
print('{|class="wikitable"')
|
|
print("! IFC Class")
|
|
print("! Predefined Type")
|
|
|
|
|
|
def print_entity(entity):
|
|
print("|-")
|
|
print("| " + entity.name())
|
|
print("| ")
|
|
if entity.name() in entity_descriptions:
|
|
print(
|
|
"{} ... [https://standards.buildingsmart.org/IFC/DEV/IFC4_3/RC1/HTML/link/{}.htm read more]".format(
|
|
entity_descriptions[entity.name()], entity.name().lower()
|
|
)
|
|
)
|
|
else:
|
|
print(
|
|
"No description provided ... [https://standards.buildingsmart.org/IFC/DEV/IFC4_3/RC1/HTML/link/{}.htm read more]".format(
|
|
entity_descriptions[entity.name()], entity.name().lower()
|
|
)
|
|
)
|
|
for attribute in entity.attributes():
|
|
if attribute.name() == "PredefinedType":
|
|
enum = attribute.type_of_attribute().declared_type()
|
|
print("\nThe following predefined types are defined:\n")
|
|
for item in enum.enumeration_items():
|
|
# print('|-')
|
|
# print('| ' + entity.name())
|
|
# print('| ' + item)
|
|
if enum.name() in enum_descriptions and item in enum_descriptions[enum.name()]:
|
|
print(
|
|
"* '''{}''' - {} ... [https://standards.buildingsmart.org/IFC/DEV/IFC4_3/RC1/HTML/link/{}.htm read more]".format(
|
|
item, enum_descriptions[enum.name()][item], enum.name().lower()
|
|
)
|
|
)
|
|
else:
|
|
print(
|
|
"* '''{}''' - No description provided ... [https://standards.buildingsmart.org/IFC/DEV/IFC4_3/RC1/HTML/link/{}.htm read more]".format(
|
|
item, enum.name().lower()
|
|
)
|
|
)
|
|
|
|
for subtype in entity.subtypes():
|
|
print_entity(subtype)
|
|
|
|
|
|
for asset in ifcopenshell.util.selector.cobie_component_assets:
|
|
schema = ifcopenshell.ifcopenshell_wrapper.schema_by_name("IFC4")
|
|
print_entity(schema.declaration_by_name(asset))
|
|
|
|
print("|}")
|