The Ontology explorer allows a user to ask a few basic questions of the ontology:
- What fields are associated with a type name?
- What are the types associated with a given set of fields?
- Is a field defined within a certain namespace?
To install please follow the instructions below.
First, create a virtual environment with venv
followed by the environment name (in this example: tooling
) in the digitalbuildings repository.
python -m venv tooling
Mac OS / Linux:
source tooling/bin/activate
Windows
tooling\Scripts\activate
Next, you can either use pip or setup (to be deprecated) to install the necessary packages and dependencies.
- Run the following command to ensure that your Python package management tools are up-to-date.
python3 -m pip install --upgrade pip
- Run
python3 -m pip install .
from the following directories:
- digitalbuildings/tools/validators/ontology_validator
- digitalbuildings/tools/validators/instance_validator
- digitalbuildings/tools/explorer
To install the dependencies, please run python setup.py install
from the following directories, in order:
- digitalbuildings/tools/validators/ontology_validator
- digitalbuildings/tools/validators/instance_validator
- digitalbuildings/tools/explorer
There are two main ways in which the ontology explorer can be used:
-
Import explorer_handler from explorer.lib and call Build()
- This returns an OntologyWrapper object which can be used to execute query functions on the Digital Buildings Ontology. You may also pass to Build() a path to an ontology extension.
-
As a stand-alone command-line interface (CLI).
- Run
python explorer.py
to start the application. - If you have extended the ontology by adding new types to your local ontology, run the following:
python explorer.py --modified-ontology-types=path/to/modified/ontology/types/folder
- Run