mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-13 10:57:49 +00:00
72 lines
2.9 KiB
Python
72 lines
2.9 KiB
Python
import ifcopenshell.util.unit
|
|
|
|
|
|
class Usecase:
|
|
def __init__(self, file, **settings):
|
|
self.file = file
|
|
self.settings = {
|
|
"map_conversion": {},
|
|
"projected_crs": {},
|
|
"true_north": [],
|
|
"map_unit": "",
|
|
}
|
|
for key, value in settings.items():
|
|
self.settings[key] = value
|
|
|
|
def execute(self):
|
|
map_conversion = self.file.by_type("IfcMapConversion")[0]
|
|
projected_crs = self.file.by_type("IfcProjectedCRS")[0]
|
|
for name, value in self.settings["map_conversion"].items():
|
|
setattr(map_conversion, name, value)
|
|
for name, value in self.settings["projected_crs"].items():
|
|
setattr(projected_crs, name, value)
|
|
self.remove_existing_map_unit(projected_crs)
|
|
self.set_map_unit(projected_crs)
|
|
self.set_true_north()
|
|
|
|
def remove_existing_map_unit(self, projected_crs):
|
|
if projected_crs.MapUnit and len(self.file.get_inverse(projected_crs.MapUnit)) == 1:
|
|
# TODO: go deeper for conversion units
|
|
self.file.remove(projected_crs.MapUnit)
|
|
|
|
def set_map_unit(self, projected_crs):
|
|
if not self.settings["map_unit"]:
|
|
return
|
|
|
|
if "METRE" in self.settings["map_unit"]:
|
|
projected_crs.MapUnit = self.file.createIfcSIUnit(
|
|
None,
|
|
"LENGTHUNIT",
|
|
ifcopenshell.util.unit.get_prefix(self.settings["map_unit"]),
|
|
ifcopenshell.util.unit.get_unit_name(self.settings["map_unit"]),
|
|
)
|
|
return
|
|
|
|
value_component = self.file.create_entity(
|
|
"IfcReal", **{"wrappedValue": ifcopenshell.util.unit.si_conversions[self.settings["map_unit"]]}
|
|
)
|
|
si_unit = self.file.createIfcSIUnit(None, "LENGTHUNIT", None, "METRE")
|
|
projected_crs.MapUnit = self.file.createIfcConversionBasedUnit(
|
|
self.file.createIfcDimensionalExponents(1, 0, 0, 0, 0, 0, 0),
|
|
"LENGTHUNIT",
|
|
self.settings["map_unit"],
|
|
self.file.createIfcMeasureWithUnit(value_component, si_unit),
|
|
)
|
|
|
|
def set_true_north(self):
|
|
if self.settings["true_north"] == []:
|
|
return
|
|
for context in self.file.by_type("IfcGeometricRepresentationContext", include_subtypes=False):
|
|
if context.TrueNorth:
|
|
if len(self.file.get_inverse(context.TrueNorth)) != 1:
|
|
context.TrueNorth = self.file.create_entity("IfcDirection")
|
|
else:
|
|
context.TrueNorth = self.file.create_entity("IfcDirection")
|
|
direction = context.TrueNorth
|
|
if self.settings["true_north"] is None:
|
|
context.TrueNorth = self.settings["true_north"]
|
|
elif context.CoordinateSpaceDimension == 2:
|
|
direction.DirectionRatios = self.settings["true_north"][0:2]
|
|
else:
|
|
direction.DirectionRatios = self.settings["true_north"][0:2] + [0.0]
|