Add API docs for georeferencing module

This commit is contained in:
Dion Moult
2022-11-28 10:30:29 +11:00
parent b05c711fb9
commit 052d6e2254
4 changed files with 148 additions and 13 deletions
@@ -18,7 +18,21 @@
class Usecase:
def __init__(self, file, **settings):
def __init__(self, file):
"""Remove georeferencing data
All georeferencing parameters such as projected CRS and map conversion
data will be lost.
:return: None
:rtype: None
Example:
ifcopenshell.api.run("georeference.add_georeferencing", model)
# Let's change our mind
ifcopenshell.api.run("georeference.remove_georeferencing", model)
"""
self.file = file
def execute(self):