mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 09:48:32 +00:00
40 lines
1.4 KiB
Python
40 lines
1.4 KiB
Python
class Data:
|
|
is_loaded = False
|
|
map_conversion = {}
|
|
projected_crs = {}
|
|
true_north = {}
|
|
|
|
@classmethod
|
|
def purge(cls):
|
|
cls.is_loaded = False
|
|
cls.map_conversion = {}
|
|
cls.projected_crs = {}
|
|
cls.true_north = None
|
|
|
|
@classmethod
|
|
def load(cls, file):
|
|
if not file:
|
|
return
|
|
cls.map_conversion = {}
|
|
cls.projected_crs = {}
|
|
cls.true_north = {}
|
|
if file.schema == "IFC2X3":
|
|
return
|
|
for context in file.by_type("IfcGeometricRepresentationContext", include_subtypes=False):
|
|
if not context.HasCoordinateOperation:
|
|
continue
|
|
map_conversion = context.HasCoordinateOperation[0]
|
|
cls.map_conversion = map_conversion.get_info()
|
|
cls.map_conversion["SourceCRS"] = cls.map_conversion["SourceCRS"].id()
|
|
cls.map_conversion["TargetCRS"] = cls.map_conversion["TargetCRS"].id()
|
|
cls.projected_crs = map_conversion.TargetCRS.get_info()
|
|
if cls.projected_crs["MapUnit"]:
|
|
cls.projected_crs["MapUnit"] = map_conversion.TargetCRS.MapUnit.get_info()
|
|
break
|
|
for context in file.by_type("IfcGeometricRepresentationContext", include_subtypes=False):
|
|
if not context.TrueNorth:
|
|
continue
|
|
cls.true_north = context.TrueNorth.DirectionRatios
|
|
break
|
|
cls.is_loaded = True
|