├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── __init__.py ├── bcf ├── README.md ├── __init__.py ├── bcf │ ├── __init__.py │ ├── bcfxml.py │ ├── v2 │ │ ├── bcfxml.py │ │ ├── data.py │ │ └── xsd │ │ │ ├── markup.xsd │ │ │ ├── project.xsd │ │ │ ├── version.xsd │ │ │ └── visinfo.xsd │ └── v3 │ │ ├── bcfapi.py │ │ ├── bcfxml.py │ │ ├── data.py │ │ └── xsd │ │ ├── documents.xsd │ │ ├── extensions.xsd │ │ ├── markup.xsd │ │ ├── project.xsd │ │ ├── shared-types.xsd │ │ ├── version.xsd │ │ └── visinfo.xsd ├── bcfxml.py ├── requirements.txt ├── v2 │ ├── bcfxml.py │ ├── data.py │ └── xsd │ │ ├── markup.xsd │ │ ├── project.xsd │ │ ├── version.xsd │ │ └── visinfo.xsd └── v3 │ ├── bcfapi.py │ ├── bcfxml.py │ ├── data.py │ └── xsd │ ├── documents.xsd │ ├── extensions.xsd │ ├── markup.xsd │ ├── project.xsd │ ├── shared-types.xsd │ ├── version.xsd │ └── visinfo.xsd ├── flask_app.py ├── ifcopenshell windows ├── __init__.py ├── _ifcopenshell_wrapper.pyd ├── entity_instance.py ├── express │ ├── DocAttribute.csv │ ├── DocDefined.csv │ ├── DocEntity.csv │ ├── DocEntityAttributes.csv │ ├── DocEnumeration.csv │ ├── DocSelect.csv │ ├── README.txt │ ├── __init__.py │ ├── bootstrap.py │ ├── codegen.py │ ├── definitions.py │ ├── documentation.py │ ├── express.bnf │ ├── express_parser.py │ ├── header.py │ ├── implementation.py │ ├── mapping.py │ ├── nodes.py │ ├── schema.py │ ├── schema_class.py │ └── templates.py ├── file.py ├── geom │ ├── __init__.py │ ├── app.py │ ├── code_editor_pane.py │ ├── main.py │ └── occ_utils.py ├── guid.py ├── ids.py ├── ids.xsd ├── ifcopenshell_wrapper.py ├── main.py ├── template.py ├── test_ids.py ├── util │ ├── __init__.py │ ├── attribute_4_to_2x3.json │ ├── class_4_to_2x3.json │ ├── date.py │ ├── element.py │ ├── entity_to_type_map_2x3.json │ ├── entity_to_type_map_4.json │ ├── geolocation.py │ ├── placement.py │ ├── pset.py │ ├── schema.py │ ├── schema │ │ └── Pset_IFC4_ADD2.ifc │ ├── selector.py │ ├── type.py │ └── unit.py └── validate.py ├── ifcopenshell ├── __init__.py ├── _ifcopenshell_wrapper.so ├── entity_instance.py ├── express │ ├── DocAttribute.csv │ ├── DocDefined.csv │ ├── DocEntity.csv │ ├── DocEntityAttributes.csv │ ├── DocEnumeration.csv │ ├── DocSelect.csv │ ├── README.txt │ ├── __init__.py │ ├── bootstrap.py │ ├── codegen.py │ ├── definitions.py │ ├── documentation.py │ ├── express.bnf │ ├── express_parser.py │ ├── header.py │ ├── implementation.py │ ├── mapping.py │ ├── nodes.py │ ├── schema.py │ ├── schema_class.py │ └── templates.py ├── file.py ├── geom │ ├── __init__.py │ ├── app.py │ ├── code_editor_pane.py │ ├── main.py │ └── occ_utils.py ├── guid.py ├── ids.py ├── ids.xsd ├── ifcopenshell_wrapper.py ├── main.py ├── template.py ├── test_ids.py ├── util │ ├── __init__.py │ ├── attribute_4_to_2x3.json │ ├── class_4_to_2x3.json │ ├── date.py │ ├── element.py │ ├── entity_to_type_map_2x3.json │ ├── entity_to_type_map_4.json │ ├── geolocation.py │ ├── placement.py │ ├── pset.py │ ├── schema.py │ ├── schema │ │ └── Pset_IFC4_ADD2.ifc │ ├── selector.py │ ├── type.py │ └── unit.py └── validate.py ├── static ├── css │ └── custom_styles.css ├── custom_ids │ └── User_127.0.0.1.xml ├── icons │ ├── about.txt │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── clipboard_1f4cb.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── js │ ├── create.js │ └── update.js └── media │ └── Info-Req-IDS-IDS-project-poster-scaled.jpg ├── templates ├── base.html ├── create.html ├── documentation.html ├── home.html └── validate.html └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/README.md -------------------------------------------------------------------------------- /bcf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcf/bcf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcf/bcf/bcfxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/bcfxml.py -------------------------------------------------------------------------------- /bcf/bcf/v2/bcfxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v2/bcfxml.py -------------------------------------------------------------------------------- /bcf/bcf/v2/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v2/data.py -------------------------------------------------------------------------------- /bcf/bcf/v2/xsd/markup.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v2/xsd/markup.xsd -------------------------------------------------------------------------------- /bcf/bcf/v2/xsd/project.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v2/xsd/project.xsd -------------------------------------------------------------------------------- /bcf/bcf/v2/xsd/version.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v2/xsd/version.xsd -------------------------------------------------------------------------------- /bcf/bcf/v2/xsd/visinfo.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v2/xsd/visinfo.xsd -------------------------------------------------------------------------------- /bcf/bcf/v3/bcfapi.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcf/bcf/v3/bcfxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v3/bcfxml.py -------------------------------------------------------------------------------- /bcf/bcf/v3/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v3/data.py -------------------------------------------------------------------------------- /bcf/bcf/v3/xsd/documents.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v3/xsd/documents.xsd -------------------------------------------------------------------------------- /bcf/bcf/v3/xsd/extensions.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v3/xsd/extensions.xsd -------------------------------------------------------------------------------- /bcf/bcf/v3/xsd/markup.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v3/xsd/markup.xsd -------------------------------------------------------------------------------- /bcf/bcf/v3/xsd/project.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v3/xsd/project.xsd -------------------------------------------------------------------------------- /bcf/bcf/v3/xsd/shared-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v3/xsd/shared-types.xsd -------------------------------------------------------------------------------- /bcf/bcf/v3/xsd/version.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v3/xsd/version.xsd -------------------------------------------------------------------------------- /bcf/bcf/v3/xsd/visinfo.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcf/v3/xsd/visinfo.xsd -------------------------------------------------------------------------------- /bcf/bcfxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/bcfxml.py -------------------------------------------------------------------------------- /bcf/requirements.txt: -------------------------------------------------------------------------------- 1 | xmlschema -------------------------------------------------------------------------------- /bcf/v2/bcfxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v2/bcfxml.py -------------------------------------------------------------------------------- /bcf/v2/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v2/data.py -------------------------------------------------------------------------------- /bcf/v2/xsd/markup.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v2/xsd/markup.xsd -------------------------------------------------------------------------------- /bcf/v2/xsd/project.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v2/xsd/project.xsd -------------------------------------------------------------------------------- /bcf/v2/xsd/version.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v2/xsd/version.xsd -------------------------------------------------------------------------------- /bcf/v2/xsd/visinfo.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v2/xsd/visinfo.xsd -------------------------------------------------------------------------------- /bcf/v3/bcfapi.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcf/v3/bcfxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v3/bcfxml.py -------------------------------------------------------------------------------- /bcf/v3/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v3/data.py -------------------------------------------------------------------------------- /bcf/v3/xsd/documents.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v3/xsd/documents.xsd -------------------------------------------------------------------------------- /bcf/v3/xsd/extensions.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v3/xsd/extensions.xsd -------------------------------------------------------------------------------- /bcf/v3/xsd/markup.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v3/xsd/markup.xsd -------------------------------------------------------------------------------- /bcf/v3/xsd/project.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v3/xsd/project.xsd -------------------------------------------------------------------------------- /bcf/v3/xsd/shared-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v3/xsd/shared-types.xsd -------------------------------------------------------------------------------- /bcf/v3/xsd/version.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v3/xsd/version.xsd -------------------------------------------------------------------------------- /bcf/v3/xsd/visinfo.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/bcf/v3/xsd/visinfo.xsd -------------------------------------------------------------------------------- /flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/flask_app.py -------------------------------------------------------------------------------- /ifcopenshell windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/__init__.py -------------------------------------------------------------------------------- /ifcopenshell windows/_ifcopenshell_wrapper.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/_ifcopenshell_wrapper.pyd -------------------------------------------------------------------------------- /ifcopenshell windows/entity_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/entity_instance.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/DocAttribute.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/DocAttribute.csv -------------------------------------------------------------------------------- /ifcopenshell windows/express/DocDefined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/DocDefined.csv -------------------------------------------------------------------------------- /ifcopenshell windows/express/DocEntity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/DocEntity.csv -------------------------------------------------------------------------------- /ifcopenshell windows/express/DocEntityAttributes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/DocEntityAttributes.csv -------------------------------------------------------------------------------- /ifcopenshell windows/express/DocEnumeration.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/DocEnumeration.csv -------------------------------------------------------------------------------- /ifcopenshell windows/express/DocSelect.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/DocSelect.csv -------------------------------------------------------------------------------- /ifcopenshell windows/express/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/README.txt -------------------------------------------------------------------------------- /ifcopenshell windows/express/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/__init__.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/bootstrap.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/codegen.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/definitions.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/documentation.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/express.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/express.bnf -------------------------------------------------------------------------------- /ifcopenshell windows/express/express_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/express_parser.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/header.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/implementation.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/mapping.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/nodes.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/schema.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/schema_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/schema_class.py -------------------------------------------------------------------------------- /ifcopenshell windows/express/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/express/templates.py -------------------------------------------------------------------------------- /ifcopenshell windows/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/file.py -------------------------------------------------------------------------------- /ifcopenshell windows/geom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/geom/__init__.py -------------------------------------------------------------------------------- /ifcopenshell windows/geom/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/geom/app.py -------------------------------------------------------------------------------- /ifcopenshell windows/geom/code_editor_pane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/geom/code_editor_pane.py -------------------------------------------------------------------------------- /ifcopenshell windows/geom/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/geom/main.py -------------------------------------------------------------------------------- /ifcopenshell windows/geom/occ_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/geom/occ_utils.py -------------------------------------------------------------------------------- /ifcopenshell windows/guid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/guid.py -------------------------------------------------------------------------------- /ifcopenshell windows/ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/ids.py -------------------------------------------------------------------------------- /ifcopenshell windows/ids.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/ids.xsd -------------------------------------------------------------------------------- /ifcopenshell windows/ifcopenshell_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/ifcopenshell_wrapper.py -------------------------------------------------------------------------------- /ifcopenshell windows/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/main.py -------------------------------------------------------------------------------- /ifcopenshell windows/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/template.py -------------------------------------------------------------------------------- /ifcopenshell windows/test_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/test_ids.py -------------------------------------------------------------------------------- /ifcopenshell windows/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ifcopenshell windows/util/attribute_4_to_2x3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/attribute_4_to_2x3.json -------------------------------------------------------------------------------- /ifcopenshell windows/util/class_4_to_2x3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/class_4_to_2x3.json -------------------------------------------------------------------------------- /ifcopenshell windows/util/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/date.py -------------------------------------------------------------------------------- /ifcopenshell windows/util/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/element.py -------------------------------------------------------------------------------- /ifcopenshell windows/util/entity_to_type_map_2x3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/entity_to_type_map_2x3.json -------------------------------------------------------------------------------- /ifcopenshell windows/util/entity_to_type_map_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/entity_to_type_map_4.json -------------------------------------------------------------------------------- /ifcopenshell windows/util/geolocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/geolocation.py -------------------------------------------------------------------------------- /ifcopenshell windows/util/placement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/placement.py -------------------------------------------------------------------------------- /ifcopenshell windows/util/pset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/pset.py -------------------------------------------------------------------------------- /ifcopenshell windows/util/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/schema.py -------------------------------------------------------------------------------- /ifcopenshell windows/util/schema/Pset_IFC4_ADD2.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/schema/Pset_IFC4_ADD2.ifc -------------------------------------------------------------------------------- /ifcopenshell windows/util/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/selector.py -------------------------------------------------------------------------------- /ifcopenshell windows/util/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/type.py -------------------------------------------------------------------------------- /ifcopenshell windows/util/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/util/unit.py -------------------------------------------------------------------------------- /ifcopenshell windows/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell windows/validate.py -------------------------------------------------------------------------------- /ifcopenshell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/__init__.py -------------------------------------------------------------------------------- /ifcopenshell/_ifcopenshell_wrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/_ifcopenshell_wrapper.so -------------------------------------------------------------------------------- /ifcopenshell/entity_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/entity_instance.py -------------------------------------------------------------------------------- /ifcopenshell/express/DocAttribute.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/DocAttribute.csv -------------------------------------------------------------------------------- /ifcopenshell/express/DocDefined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/DocDefined.csv -------------------------------------------------------------------------------- /ifcopenshell/express/DocEntity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/DocEntity.csv -------------------------------------------------------------------------------- /ifcopenshell/express/DocEntityAttributes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/DocEntityAttributes.csv -------------------------------------------------------------------------------- /ifcopenshell/express/DocEnumeration.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/DocEnumeration.csv -------------------------------------------------------------------------------- /ifcopenshell/express/DocSelect.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/DocSelect.csv -------------------------------------------------------------------------------- /ifcopenshell/express/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/README.txt -------------------------------------------------------------------------------- /ifcopenshell/express/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/__init__.py -------------------------------------------------------------------------------- /ifcopenshell/express/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/bootstrap.py -------------------------------------------------------------------------------- /ifcopenshell/express/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/codegen.py -------------------------------------------------------------------------------- /ifcopenshell/express/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/definitions.py -------------------------------------------------------------------------------- /ifcopenshell/express/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/documentation.py -------------------------------------------------------------------------------- /ifcopenshell/express/express.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/express.bnf -------------------------------------------------------------------------------- /ifcopenshell/express/express_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/express_parser.py -------------------------------------------------------------------------------- /ifcopenshell/express/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/header.py -------------------------------------------------------------------------------- /ifcopenshell/express/implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/implementation.py -------------------------------------------------------------------------------- /ifcopenshell/express/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/mapping.py -------------------------------------------------------------------------------- /ifcopenshell/express/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/nodes.py -------------------------------------------------------------------------------- /ifcopenshell/express/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/schema.py -------------------------------------------------------------------------------- /ifcopenshell/express/schema_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/schema_class.py -------------------------------------------------------------------------------- /ifcopenshell/express/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/express/templates.py -------------------------------------------------------------------------------- /ifcopenshell/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/file.py -------------------------------------------------------------------------------- /ifcopenshell/geom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/geom/__init__.py -------------------------------------------------------------------------------- /ifcopenshell/geom/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/geom/app.py -------------------------------------------------------------------------------- /ifcopenshell/geom/code_editor_pane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/geom/code_editor_pane.py -------------------------------------------------------------------------------- /ifcopenshell/geom/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/geom/main.py -------------------------------------------------------------------------------- /ifcopenshell/geom/occ_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/geom/occ_utils.py -------------------------------------------------------------------------------- /ifcopenshell/guid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/guid.py -------------------------------------------------------------------------------- /ifcopenshell/ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/ids.py -------------------------------------------------------------------------------- /ifcopenshell/ids.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/ids.xsd -------------------------------------------------------------------------------- /ifcopenshell/ifcopenshell_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/ifcopenshell_wrapper.py -------------------------------------------------------------------------------- /ifcopenshell/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/main.py -------------------------------------------------------------------------------- /ifcopenshell/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/template.py -------------------------------------------------------------------------------- /ifcopenshell/test_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/test_ids.py -------------------------------------------------------------------------------- /ifcopenshell/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ifcopenshell/util/attribute_4_to_2x3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/attribute_4_to_2x3.json -------------------------------------------------------------------------------- /ifcopenshell/util/class_4_to_2x3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/class_4_to_2x3.json -------------------------------------------------------------------------------- /ifcopenshell/util/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/date.py -------------------------------------------------------------------------------- /ifcopenshell/util/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/element.py -------------------------------------------------------------------------------- /ifcopenshell/util/entity_to_type_map_2x3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/entity_to_type_map_2x3.json -------------------------------------------------------------------------------- /ifcopenshell/util/entity_to_type_map_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/entity_to_type_map_4.json -------------------------------------------------------------------------------- /ifcopenshell/util/geolocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/geolocation.py -------------------------------------------------------------------------------- /ifcopenshell/util/placement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/placement.py -------------------------------------------------------------------------------- /ifcopenshell/util/pset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/pset.py -------------------------------------------------------------------------------- /ifcopenshell/util/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/schema.py -------------------------------------------------------------------------------- /ifcopenshell/util/schema/Pset_IFC4_ADD2.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/schema/Pset_IFC4_ADD2.ifc -------------------------------------------------------------------------------- /ifcopenshell/util/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/selector.py -------------------------------------------------------------------------------- /ifcopenshell/util/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/type.py -------------------------------------------------------------------------------- /ifcopenshell/util/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/util/unit.py -------------------------------------------------------------------------------- /ifcopenshell/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/ifcopenshell/validate.py -------------------------------------------------------------------------------- /static/css/custom_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/css/custom_styles.css -------------------------------------------------------------------------------- /static/custom_ids/User_127.0.0.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/custom_ids/User_127.0.0.1.xml -------------------------------------------------------------------------------- /static/icons/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/icons/about.txt -------------------------------------------------------------------------------- /static/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /static/icons/clipboard_1f4cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/icons/clipboard_1f4cb.png -------------------------------------------------------------------------------- /static/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/icons/favicon-16x16.png -------------------------------------------------------------------------------- /static/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/icons/favicon-32x32.png -------------------------------------------------------------------------------- /static/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/icons/favicon.ico -------------------------------------------------------------------------------- /static/icons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/icons/site.webmanifest -------------------------------------------------------------------------------- /static/js/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/js/create.js -------------------------------------------------------------------------------- /static/js/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/js/update.js -------------------------------------------------------------------------------- /static/media/Info-Req-IDS-IDS-project-poster-scaled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/static/media/Info-Req-IDS-IDS-project-poster-scaled.jpg -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/templates/create.html -------------------------------------------------------------------------------- /templates/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/templates/documentation.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/validate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/templates/validate.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomczak/IDS-web-app/HEAD/test.py --------------------------------------------------------------------------------