2021-01-19 11:18:26 +11:00
|
|
|
class Usecase:
|
2021-03-27 19:14:32 +11:00
|
|
|
def __init__(self, file, **settings):
|
2021-01-19 11:18:26 +11:00
|
|
|
self.file = file
|
|
|
|
|
self.settings = {
|
|
|
|
|
"map_conversion": {},
|
|
|
|
|
"projected_crs": {},
|
2021-04-04 08:58:24 +10:00
|
|
|
"true_north": [],
|
2021-01-19 11:18:26 +11:00
|
|
|
}
|
|
|
|
|
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)
|
2021-04-04 08:58:24 +10:00
|
|
|
self.set_true_north()
|
2021-01-19 11:18:26 +11:00
|
|
|
|
2021-04-04 08:58:24 +10:00
|
|
|
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]
|