Fix ifcopenshell.file calls in rules fixtures, use simpler schema postfix

This commit is contained in:
Andrej730
2026-08-03 15:16:27 +05:00
parent 6edea83137
commit 8f67b905eb
9 changed files with 11 additions and 10 deletions
@@ -5,8 +5,8 @@ FILE_NAME('','2023-01-11T09:47:45',(),(),'IfcOpenShell v0.7.0-8a108f37','IfcOpen
FILE_SCHEMA(('IFC4X3_ADD2'));
ENDSEC;
DATA;
#1=IFCGEOGRAPHICCRS('EPSG:4326',$,$,$,$);
#2=IFCGEOGRAPHICCRS('EPSG:3857',$,$,$,$);
#1=IFCGEOGRAPHICCRS('EPSG:4326',$,$,$,$,$);
#2=IFCGEOGRAPHICCRS('EPSG:3857',$,$,$,$,$);
#3=IFCRIGIDOPERATION(#1,#2,IFCLENGTHMEASURE(0.),IFCPLANEANGLEMEASURE(0.),0.);
ENDSEC;
END-ISO-10303-21;
+2 -1
View File
@@ -1,9 +1,10 @@
import ifcopenshell
import ifcopenshell.util.schema
depth = 1.0
for dir_x, dir_z in ((0.0, -1.0), (0.0, 0.0), (1.0, 0.0), (1.0, 0.001), (0.0, 1.0)):
schemas = ["IFC2X3"]
schemas: list[ifcopenshell.util.schema.IFC_SCHEMA] = ["IFC2X3"]
if (dir_x, dir_z) == (0.0, 0.0):
schemas.append("IFC4")
+2 -2
View File
@@ -1,7 +1,7 @@
import ifcopenshell
for i, type_decl in enumerate(("IfcLengthMeasure", "IfcPlaneAngleMeasure")):
f = ifcopenshell.file(schema="IFC4X3_ADD1")
f = ifcopenshell.file(schema="IFC4X3")
f.createIfcRigidOperation(
SourceCRS=f.createIfcGeographicCRS("EPSG:4326"),
TargetCRS=f.createIfcGeographicCRS("EPSG:3857"),
@@ -9,4 +9,4 @@ for i, type_decl in enumerate(("IfcLengthMeasure", "IfcPlaneAngleMeasure")):
SecondCoordinate=f.create_entity("IfcPlaneAngleMeasure", 0.0),
Height=0.0,
)
f.write(f"{'pass' if i else 'fail'}-rigid-op-IfcPlaneAngleMeasure-{type_decl}-ifc4x3_add1.ifc")
f.write(f"{'pass' if i else 'fail'}-rigid-op-IfcPlaneAngleMeasure-{type_decl}-ifc4x3.ifc")
+2 -2
View File
@@ -6,11 +6,11 @@ segs = [
lambda f: [f.createIfcLineIndex((1, 2)), f.createIfcLineIndex((1, 2))],
]
for schema in ("ifc4", "ifc4x3_add1"):
for schema in ("IFC4", "IFC4X3"):
for i, seg in enumerate(segs):
f = ifcopenshell.file(schema=schema)
s = seg(f)
f.createIfcIndexedPolyCurve(f.createIfcCartesianPointList2D([(0.0, 0.0), (0.0, 1.0), (1.0, 1.0)]), s)
f.write(
f'{"fail" if i == 2 else "pass"}-poly-curve-{"no-segments" if s is None else "-".join(["-".join(map(str, x[0])) for x in s])}-{schema}.ifc'
f'{"fail" if i == 2 else "pass"}-poly-curve-{"no-segments" if s is None else "-".join(["-".join(map(str, x[0])) for x in s])}-{schema.lower()}.ifc'
)