We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f733dc commit 348d094Copy full SHA for 348d094
1 file changed
geoapps_utils/modelling/plates.py
@@ -64,8 +64,8 @@ def from_maxwell_plate_geometry(cls, geometry: PlateGeometry) -> Self:
64
)
65
66
return cls(
67
- strike_length=geometry.width,
68
- dip_length=geometry.length,
+ strike_length=geometry.length,
+ dip_length=geometry.width,
69
width=geometry.thickness,
70
easting=geometry.position.x,
71
northing=geometry.position.y,
@@ -84,8 +84,8 @@ def to_maxwell_plate_geometry(self) -> PlateGeometry:
84
),
85
dip=self.dip,
86
dip_direction=self.direction,
87
- length=self.dip_length,
88
- width=self.strike_length,
+ length=self.strike_length,
+ width=self.dip_length,
89
thickness=self.width,
90
91
0 commit comments