#2319 Add documentation for IfcDiff

This commit is contained in:
Dion Moult
2022-08-18 16:11:59 +10:00
parent 35ce8c2848
commit 09a6f56f47
4 changed files with 159 additions and 27 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ extensions = ["autoapi.extension"]
autoapi_type = 'python'
# autoapi works by reading source code instead of importing modules
autoapi_dirs = ['../ifcopenshell']
autoapi_dirs = ['../ifcopenshell', '../../ifcdiff']
# autoapi_options doesn't have show-module-summary, as it tends to create one
# page per function which contradicts the presentation of showing all functions
+118 -10
View File
@@ -1,16 +1,124 @@
IfcDiff
=======
This documentation is free software! You are free to contribute and help write
this document.
IfcDiff is both a CLI utility and library that lets you compare the changes
between two IFC models. Changes are made on the assumption that the GlobalId of
an element in one model is consistent with the same element in another model.
You may compare geometric changes, and changes in various IFC relationships and
properties. IfcDiff supports comparing across different IFC schema versions.
.. toctree::
:maxdepth: 1
:caption: Contents:
Changes will be sorted into three lists:
Indices and tables
------------------
- **Added**: a list of GlobalIds of elements present in the new file but not
present in the old file.
- **Deleted**: a list of GlobalIds of elements present in the old file but not
present in the new file.
- **Changed**: A list of GlobalIds of elements present in both the old and new
file, but changes were detected. A list of changes are provided.
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
There are different methods of installation, depending on your situation.
1. **Source installation** is recommended for users wanting to use the latest
code as a library or a CLI utility.
2. **Using the BlenderBIM Add-on** is recommended for non-developers wanting a
graphical interface.
Source installation
-------------------
1. :doc:`Install IfcOpenShell <ifcopenshell-python/installation>`
2. `Clone the source code <https://github.com/IfcOpenShell/IfcOpenShell/tree/v0.7.0/src/ifcdiff>`_.
3. ``pip install -r requirements.txt``
Here is a minimal example of how to use IfcDiff as a Python module or CLI
utility:
::
$ python -m ifcdiff -h
usage: ifcdiff.py [-h] [-o OUTPUT] [-r RELATIONSHIPS] old new
Show the difference between two IFC files
positional arguments:
old The old IFC file
new The new IFC file
options:
-h, --help show this help message and exit
-o OUTPUT, --output OUTPUT
The JSON diff file to output. Defaults to diff.json
-r RELATIONSHIPS, --relationships RELATIONSHIPS
A list of space-separated relationships, chosen from "type", "property", "container", "aggregate", "classification"
$ python -m ifcdiff old.ifc new.ifc
$ cat diff.json
Here is a minimal example of how to use IfcDiff as a library:
.. code-block:: python
from ifcdiff import IfcDiff
ifc_diff = IfcDiff("/path/to/old.ifc", "/path/to/new.ifc", "/path/to/diff.json")
ifc_diff.diff()
print(ifc_diff.change_register)
ifc_diff.export()
.. seealso::
For more information on how to use IfcDiff as a library, check out the :doc:`API
reference <autoapi/ifcdiff/index>`.
Using the BlenderBIM Add-on
---------------------------
The BlenderBIM Add-on is a Blender based graphical interface to IfcOpenShell.
Other than providing a graphical IFC authoring platform, it also comes with
IfcOpenShell, its utilities, and a Python shell built-in. This means you don't
need to install Python first, and you also can compare your IfcOpenShell
scripting to what you see with a visual model viewer, or use a graphical
interface to access the IfcOpenShell utilities.
1. Install the BlenderBIM Add-on by following the `BlenderBIM Add-on
installation documentation
<https://blenderbim.org/docs/users/installation.html>`_.
2. Launch Blender. Change to the **Scene Properties** tab in the **Properties
Panel**. Scroll down to the **IFC Quality Control > IFC Diff** panel.
3. Browse to your old IFC file, new IFC file.
4. Optionally add any relationships you want to check.
5. Optionally type in a filter query.
6. Press **Execute IFC Diff**
TODO: add pictures and make this clearer for non-developers.
Geometry changes
----------------
IfcDiff compares geometry changes using the underlying IFC geometric definition.
This means that if a shape is described in one file as an extrusion, and as a
mesh in another file, it is considered to be a change in geometry, even if they
resolve to be the same boundary representation.
Geometric tolerance is defined using the precision defined in the new IFC model.
Relationships
-------------
By default, IfcDiff only compares changes in attributes and geometry. You may
wish to optionally specify more relationships to compare. You may choose from:
- **type**: detects changes in the type relationship, such as when an
occurrence now belongs to a different type.
- **property**: detects changes in property sets, properties, quantity sets,
and quantities. Also includes detected changes in inherited properties.
- **container**: detects changes in the spatial container, handling indirect
containment such as when an element is part of an aggregate.
- **aggregate**: detects changes in aggregation.
- **classification**: detects changes in classification references. Also
includes detected changes in inherited classifications.
@@ -91,9 +91,10 @@ Using the BlenderBIM Add-on
The BlenderBIM Add-on is a Blender based graphical interface to IfcOpenShell.
Other than providing a graphical IFC authoring platform, it also comes with
IfcOpenShell and a Python shell built-in. This means you don't need to install
Python first, and you also can compare your IfcOpenShell scripting to what you
see with a visual model viewer.
IfcOpenShell, its utilities, and a Python shell built-in. This means you don't
need to install Python first, and you also can compare your IfcOpenShell
scripting to what you see with a visual model viewer, or use a graphical
interface to access the IfcOpenShell utilities.
1. Install the BlenderBIM Add-on by following the `BlenderBIM Add-on
installation documentation