├── .env ├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml ├── ifc-graph.py ├── neo4j_official ├── conf │ └── apoc.conf └── plugins │ ├── apoc-5.7.0-core.jar │ └── apoc-5.7.0-extended.jar ├── neo4j_py2neo ├── conf │ └── apoc.conf └── plugins │ ├── apoc-5.7.0-core.jar │ └── apoc-5.7.0-extended.jar ├── opd.py ├── p2n.py ├── secrets └── neo4j_password.txt └── test.ifc /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ifc-graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/ifc-graph.py -------------------------------------------------------------------------------- /neo4j_official/conf/apoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/neo4j_official/conf/apoc.conf -------------------------------------------------------------------------------- /neo4j_official/plugins/apoc-5.7.0-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/neo4j_official/plugins/apoc-5.7.0-core.jar -------------------------------------------------------------------------------- /neo4j_official/plugins/apoc-5.7.0-extended.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/neo4j_official/plugins/apoc-5.7.0-extended.jar -------------------------------------------------------------------------------- /neo4j_py2neo/conf/apoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/neo4j_py2neo/conf/apoc.conf -------------------------------------------------------------------------------- /neo4j_py2neo/plugins/apoc-5.7.0-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/neo4j_py2neo/plugins/apoc-5.7.0-core.jar -------------------------------------------------------------------------------- /neo4j_py2neo/plugins/apoc-5.7.0-extended.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/neo4j_py2neo/plugins/apoc-5.7.0-extended.jar -------------------------------------------------------------------------------- /opd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/opd.py -------------------------------------------------------------------------------- /p2n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/p2n.py -------------------------------------------------------------------------------- /secrets/neo4j_password.txt: -------------------------------------------------------------------------------- 1 | test1234 -------------------------------------------------------------------------------- /test.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwiss/IFC-graph/HEAD/test.ifc --------------------------------------------------------------------------------