OpenGeode-Geosciences 9.5.4rc1__cp312-cp312-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- opengeode_geosciences/__init__.py +7 -0
- opengeode_geosciences/__init__.pyi +155 -0
- opengeode_geosciences/bin/OpenGeode-Geosciences_explicit.dll +0 -0
- opengeode_geosciences/bin/OpenGeode-Geosciences_implicit.dll +0 -0
- opengeode_geosciences/bin/__init__.pyi +4 -0
- opengeode_geosciences/bin/opengeode_geosciences_py_explicit.cp312-win_amd64.pyd +0 -0
- opengeode_geosciences/bin/opengeode_geosciences_py_explicit.pyi +559 -0
- opengeode_geosciences/bin/opengeode_geosciences_py_implicit.cp312-win_amd64.pyd +0 -0
- opengeode_geosciences/bin/opengeode_geosciences_py_implicit.pyi +490 -0
- opengeode_geosciences/explicit.py +25 -0
- opengeode_geosciences/explicit.pyi +70 -0
- opengeode_geosciences/implicit.py +25 -0
- opengeode_geosciences/implicit.pyi +83 -0
- opengeode_geosciences/py.typed +0 -0
- opengeode_geosciences-9.5.4rc1.dist-info/METADATA +69 -0
- opengeode_geosciences-9.5.4rc1.dist-info/RECORD +18 -0
- opengeode_geosciences-9.5.4rc1.dist-info/WHEEL +5 -0
- opengeode_geosciences-9.5.4rc1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
"""
|
|
2
|
+
OpenGeode-Geosciences Python binding for explicit library
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
import opengeode.bin.opengeode_py_basic
|
|
6
|
+
import opengeode.bin.opengeode_py_mesh
|
|
7
|
+
import opengeode.bin.opengeode_py_model
|
|
8
|
+
import typing
|
|
9
|
+
__all__: list[str] = ['CrossSection', 'CrossSectionBuilder', 'CrossSectionInputFactory', 'CrossSectionOutputFactory', 'Fault2D', 'Fault3D', 'FaultBlock2D', 'FaultBlock3D', 'FaultBlocks2D', 'FaultBlocks3D', 'FaultBlocksBuilder2D', 'FaultBlocksBuilder3D', 'Faults2D', 'Faults3D', 'FaultsBuilder2D', 'FaultsBuilder3D', 'GeographicCoordinateSystem2D', 'GeographicCoordinateSystem3D', 'GeographicCoordinateSystemInfo2D', 'GeographicCoordinateSystemInfo3D', 'GeosciencesExplicitLibrary', 'Horizon2D', 'Horizon3D', 'Horizons2D', 'Horizons3D', 'HorizonsBuilder2D', 'HorizonsBuilder3D', 'StratigraphicUnit2D', 'StratigraphicUnit3D', 'StratigraphicUnits2D', 'StratigraphicUnits3D', 'StratigraphicUnitsBuilder2D', 'StratigraphicUnitsBuilder3D', 'StructuralModel', 'StructuralModelBuilder', 'StructuralModelInputFactory', 'StructuralModelOutputFactory', 'assign_brep_geographic_coordinate_system_info', 'assign_edged_curve_geographic_coordinate_system_info2D', 'assign_edged_curve_geographic_coordinate_system_info3D', 'assign_point_set_geographic_coordinate_system_info2D', 'assign_point_set_geographic_coordinate_system_info3D', 'assign_section_geographic_coordinate_system_info', 'assign_solid_mesh_geographic_coordinate_system_info3D', 'assign_surface_mesh_geographic_coordinate_system_info2D', 'assign_surface_mesh_geographic_coordinate_system_info3D', 'convert_brep_coordinate_reference_system', 'convert_edged_curve_coordinate_reference_system2D', 'convert_edged_curve_coordinate_reference_system3D', 'convert_point_set_coordinate_reference_system2D', 'convert_point_set_coordinate_reference_system3D', 'convert_section_coordinate_reference_system', 'convert_solid_mesh_coordinate_reference_system3D', 'convert_surface_mesh_coordinate_reference_system2D', 'convert_surface_mesh_coordinate_reference_system3D', 'cross_section_additional_files', 'cross_section_object_priority', 'is_cross_section_loadable', 'is_cross_section_saveable', 'is_structural_model_loadable', 'is_structural_model_saveable', 'load_cross_section', 'load_structural_model', 'save_cross_section', 'save_structural_model', 'structural_model_additional_files', 'structural_model_object_priority']
|
|
10
|
+
class CrossSection(opengeode.bin.opengeode_py_model.Section, Faults2D, Horizons2D, FaultBlocks2D, StratigraphicUnits2D):
|
|
11
|
+
@typing.overload
|
|
12
|
+
def __init__(self) -> None:
|
|
13
|
+
...
|
|
14
|
+
@typing.overload
|
|
15
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_model.Section) -> None:
|
|
16
|
+
...
|
|
17
|
+
def cross_section_component(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> opengeode.bin.opengeode_py_model.Component2D:
|
|
18
|
+
...
|
|
19
|
+
def fault_block_items(self, arg0: FaultBlock2D) -> list[opengeode.bin.opengeode_py_model.Surface2D]:
|
|
20
|
+
...
|
|
21
|
+
def fault_items(self, arg0: Fault2D) -> list[opengeode.bin.opengeode_py_model.Line2D]:
|
|
22
|
+
...
|
|
23
|
+
def horizon_items(self, arg0: Horizon2D) -> list[opengeode.bin.opengeode_py_model.Line2D]:
|
|
24
|
+
...
|
|
25
|
+
def native_extension(self) -> str:
|
|
26
|
+
...
|
|
27
|
+
def stratigraphic_unit_items(self, arg0: StratigraphicUnit2D) -> list[opengeode.bin.opengeode_py_model.Surface2D]:
|
|
28
|
+
...
|
|
29
|
+
class CrossSectionBuilder(opengeode.bin.opengeode_py_model.SectionBuilder, FaultsBuilder2D, HorizonsBuilder2D, FaultBlocksBuilder2D, StratigraphicUnitsBuilder2D):
|
|
30
|
+
def __init__(self, arg0: CrossSection) -> None:
|
|
31
|
+
...
|
|
32
|
+
def add_fault(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
33
|
+
...
|
|
34
|
+
def add_fault_block(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
35
|
+
...
|
|
36
|
+
def add_horizon(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
37
|
+
...
|
|
38
|
+
def add_line_in_fault(self, arg0: opengeode.bin.opengeode_py_model.Line2D, arg1: Fault2D) -> int:
|
|
39
|
+
...
|
|
40
|
+
def add_line_in_horizon(self, arg0: opengeode.bin.opengeode_py_model.Line2D, arg1: Horizon2D) -> int:
|
|
41
|
+
...
|
|
42
|
+
def add_stratigraphic_unit(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
43
|
+
...
|
|
44
|
+
def add_surface_in_fault_block(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: FaultBlock2D) -> int:
|
|
45
|
+
...
|
|
46
|
+
def add_surface_in_stratigraphic_unit(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: StratigraphicUnit2D) -> int:
|
|
47
|
+
...
|
|
48
|
+
def copy(self, arg0: CrossSection) -> None:
|
|
49
|
+
...
|
|
50
|
+
def remove_fault(self, arg0: Fault2D) -> None:
|
|
51
|
+
...
|
|
52
|
+
def remove_fault_block(self, arg0: FaultBlock2D) -> None:
|
|
53
|
+
...
|
|
54
|
+
def remove_horizon(self, arg0: Horizon2D) -> None:
|
|
55
|
+
...
|
|
56
|
+
def remove_stratigraphic_unit(self, arg0: StratigraphicUnit2D) -> None:
|
|
57
|
+
...
|
|
58
|
+
class CrossSectionInputFactory:
|
|
59
|
+
@staticmethod
|
|
60
|
+
def list_creators() -> list[str]:
|
|
61
|
+
...
|
|
62
|
+
def has_creator(self: str) -> bool:
|
|
63
|
+
...
|
|
64
|
+
class CrossSectionOutputFactory:
|
|
65
|
+
@staticmethod
|
|
66
|
+
def list_creators() -> list[str]:
|
|
67
|
+
...
|
|
68
|
+
def has_creator(self: str) -> bool:
|
|
69
|
+
...
|
|
70
|
+
class Fault2D(opengeode.bin.opengeode_py_model.Component2D):
|
|
71
|
+
class FAULT_TYPE:
|
|
72
|
+
"""
|
|
73
|
+
Members:
|
|
74
|
+
|
|
75
|
+
NO_TYPE
|
|
76
|
+
|
|
77
|
+
NORMAL
|
|
78
|
+
|
|
79
|
+
REVERSE
|
|
80
|
+
|
|
81
|
+
STRIKE_SLIP
|
|
82
|
+
|
|
83
|
+
LISTRIC
|
|
84
|
+
|
|
85
|
+
DECOLLEMENT
|
|
86
|
+
"""
|
|
87
|
+
DECOLLEMENT: typing.ClassVar[Fault2D.FAULT_TYPE] # value = <FAULT_TYPE.DECOLLEMENT: 5>
|
|
88
|
+
LISTRIC: typing.ClassVar[Fault2D.FAULT_TYPE] # value = <FAULT_TYPE.LISTRIC: 4>
|
|
89
|
+
NORMAL: typing.ClassVar[Fault2D.FAULT_TYPE] # value = <FAULT_TYPE.NORMAL: 1>
|
|
90
|
+
NO_TYPE: typing.ClassVar[Fault2D.FAULT_TYPE] # value = <FAULT_TYPE.NO_TYPE: 0>
|
|
91
|
+
REVERSE: typing.ClassVar[Fault2D.FAULT_TYPE] # value = <FAULT_TYPE.REVERSE: 2>
|
|
92
|
+
STRIKE_SLIP: typing.ClassVar[Fault2D.FAULT_TYPE] # value = <FAULT_TYPE.STRIKE_SLIP: 3>
|
|
93
|
+
__members__: typing.ClassVar[dict[str, Fault2D.FAULT_TYPE]] # value = {'NO_TYPE': <FAULT_TYPE.NO_TYPE: 0>, 'NORMAL': <FAULT_TYPE.NORMAL: 1>, 'REVERSE': <FAULT_TYPE.REVERSE: 2>, 'STRIKE_SLIP': <FAULT_TYPE.STRIKE_SLIP: 3>, 'LISTRIC': <FAULT_TYPE.LISTRIC: 4>, 'DECOLLEMENT': <FAULT_TYPE.DECOLLEMENT: 5>}
|
|
94
|
+
def __eq__(self, other: typing.Any) -> bool:
|
|
95
|
+
...
|
|
96
|
+
def __getstate__(self) -> int:
|
|
97
|
+
...
|
|
98
|
+
def __hash__(self) -> int:
|
|
99
|
+
...
|
|
100
|
+
def __index__(self) -> int:
|
|
101
|
+
...
|
|
102
|
+
def __init__(self, value: int) -> None:
|
|
103
|
+
...
|
|
104
|
+
def __int__(self) -> int:
|
|
105
|
+
...
|
|
106
|
+
def __ne__(self, other: typing.Any) -> bool:
|
|
107
|
+
...
|
|
108
|
+
def __repr__(self) -> str:
|
|
109
|
+
...
|
|
110
|
+
def __setstate__(self, state: int) -> None:
|
|
111
|
+
...
|
|
112
|
+
def __str__(self) -> str:
|
|
113
|
+
...
|
|
114
|
+
@property
|
|
115
|
+
def name(self) -> str:
|
|
116
|
+
...
|
|
117
|
+
@property
|
|
118
|
+
def value(self) -> int:
|
|
119
|
+
...
|
|
120
|
+
def component_id(self) -> opengeode.bin.opengeode_py_model.ComponentID:
|
|
121
|
+
...
|
|
122
|
+
def has_type(self) -> bool:
|
|
123
|
+
...
|
|
124
|
+
def type(self) -> Fault2D.FAULT_TYPE:
|
|
125
|
+
...
|
|
126
|
+
class Fault3D(opengeode.bin.opengeode_py_model.Component3D):
|
|
127
|
+
class FAULT_TYPE:
|
|
128
|
+
"""
|
|
129
|
+
Members:
|
|
130
|
+
|
|
131
|
+
NO_TYPE
|
|
132
|
+
|
|
133
|
+
NORMAL
|
|
134
|
+
|
|
135
|
+
REVERSE
|
|
136
|
+
|
|
137
|
+
STRIKE_SLIP
|
|
138
|
+
|
|
139
|
+
LISTRIC
|
|
140
|
+
|
|
141
|
+
DECOLLEMENT
|
|
142
|
+
"""
|
|
143
|
+
DECOLLEMENT: typing.ClassVar[Fault3D.FAULT_TYPE] # value = <FAULT_TYPE.DECOLLEMENT: 5>
|
|
144
|
+
LISTRIC: typing.ClassVar[Fault3D.FAULT_TYPE] # value = <FAULT_TYPE.LISTRIC: 4>
|
|
145
|
+
NORMAL: typing.ClassVar[Fault3D.FAULT_TYPE] # value = <FAULT_TYPE.NORMAL: 1>
|
|
146
|
+
NO_TYPE: typing.ClassVar[Fault3D.FAULT_TYPE] # value = <FAULT_TYPE.NO_TYPE: 0>
|
|
147
|
+
REVERSE: typing.ClassVar[Fault3D.FAULT_TYPE] # value = <FAULT_TYPE.REVERSE: 2>
|
|
148
|
+
STRIKE_SLIP: typing.ClassVar[Fault3D.FAULT_TYPE] # value = <FAULT_TYPE.STRIKE_SLIP: 3>
|
|
149
|
+
__members__: typing.ClassVar[dict[str, Fault3D.FAULT_TYPE]] # value = {'NO_TYPE': <FAULT_TYPE.NO_TYPE: 0>, 'NORMAL': <FAULT_TYPE.NORMAL: 1>, 'REVERSE': <FAULT_TYPE.REVERSE: 2>, 'STRIKE_SLIP': <FAULT_TYPE.STRIKE_SLIP: 3>, 'LISTRIC': <FAULT_TYPE.LISTRIC: 4>, 'DECOLLEMENT': <FAULT_TYPE.DECOLLEMENT: 5>}
|
|
150
|
+
def __eq__(self, other: typing.Any) -> bool:
|
|
151
|
+
...
|
|
152
|
+
def __getstate__(self) -> int:
|
|
153
|
+
...
|
|
154
|
+
def __hash__(self) -> int:
|
|
155
|
+
...
|
|
156
|
+
def __index__(self) -> int:
|
|
157
|
+
...
|
|
158
|
+
def __init__(self, value: int) -> None:
|
|
159
|
+
...
|
|
160
|
+
def __int__(self) -> int:
|
|
161
|
+
...
|
|
162
|
+
def __ne__(self, other: typing.Any) -> bool:
|
|
163
|
+
...
|
|
164
|
+
def __repr__(self) -> str:
|
|
165
|
+
...
|
|
166
|
+
def __setstate__(self, state: int) -> None:
|
|
167
|
+
...
|
|
168
|
+
def __str__(self) -> str:
|
|
169
|
+
...
|
|
170
|
+
@property
|
|
171
|
+
def name(self) -> str:
|
|
172
|
+
...
|
|
173
|
+
@property
|
|
174
|
+
def value(self) -> int:
|
|
175
|
+
...
|
|
176
|
+
def component_id(self) -> opengeode.bin.opengeode_py_model.ComponentID:
|
|
177
|
+
...
|
|
178
|
+
def has_type(self) -> bool:
|
|
179
|
+
...
|
|
180
|
+
def type(self) -> Fault3D.FAULT_TYPE:
|
|
181
|
+
...
|
|
182
|
+
class FaultBlock2D(opengeode.bin.opengeode_py_model.Component2D):
|
|
183
|
+
def component_id(self) -> opengeode.bin.opengeode_py_model.ComponentID:
|
|
184
|
+
...
|
|
185
|
+
class FaultBlock3D(opengeode.bin.opengeode_py_model.Component3D):
|
|
186
|
+
def component_id(self) -> opengeode.bin.opengeode_py_model.ComponentID:
|
|
187
|
+
...
|
|
188
|
+
class FaultBlocks2D:
|
|
189
|
+
def fault_block(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> FaultBlock2D:
|
|
190
|
+
...
|
|
191
|
+
def fault_blocks(self) -> list[FaultBlock2D]:
|
|
192
|
+
...
|
|
193
|
+
def nb_fault_blocks(self) -> int:
|
|
194
|
+
...
|
|
195
|
+
class FaultBlocks3D:
|
|
196
|
+
def fault_block(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> FaultBlock3D:
|
|
197
|
+
...
|
|
198
|
+
def fault_blocks(self) -> list[FaultBlock3D]:
|
|
199
|
+
...
|
|
200
|
+
def nb_fault_blocks(self) -> int:
|
|
201
|
+
...
|
|
202
|
+
class FaultBlocksBuilder2D:
|
|
203
|
+
def set_fault_block_name(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: str) -> None:
|
|
204
|
+
...
|
|
205
|
+
class FaultBlocksBuilder3D:
|
|
206
|
+
def set_fault_block_name(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: str) -> None:
|
|
207
|
+
...
|
|
208
|
+
class Faults2D:
|
|
209
|
+
def fault(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> Fault2D:
|
|
210
|
+
...
|
|
211
|
+
def faults(self) -> list[Fault2D]:
|
|
212
|
+
...
|
|
213
|
+
def nb_faults(self) -> int:
|
|
214
|
+
...
|
|
215
|
+
class Faults3D:
|
|
216
|
+
def fault(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> Fault3D:
|
|
217
|
+
...
|
|
218
|
+
def faults(self) -> list[Fault3D]:
|
|
219
|
+
...
|
|
220
|
+
def nb_faults(self) -> int:
|
|
221
|
+
...
|
|
222
|
+
class FaultsBuilder2D:
|
|
223
|
+
def set_fault_name(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: str) -> None:
|
|
224
|
+
...
|
|
225
|
+
def set_fault_type(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: Fault2D.FAULT_TYPE) -> None:
|
|
226
|
+
...
|
|
227
|
+
class FaultsBuilder3D:
|
|
228
|
+
def set_fault_name(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: str) -> None:
|
|
229
|
+
...
|
|
230
|
+
def set_fault_type(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: Fault3D.FAULT_TYPE) -> None:
|
|
231
|
+
...
|
|
232
|
+
class GeographicCoordinateSystem2D(opengeode.bin.opengeode_py_mesh.CoordinateReferenceSystem2D):
|
|
233
|
+
@staticmethod
|
|
234
|
+
def geographic_coordinate_systems() -> list[GeographicCoordinateSystemInfo2D]:
|
|
235
|
+
...
|
|
236
|
+
@staticmethod
|
|
237
|
+
def type_name_static() -> opengeode.bin.opengeode_py_mesh.CRSType:
|
|
238
|
+
...
|
|
239
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_basic.AttributeManager, arg1: GeographicCoordinateSystemInfo2D) -> None:
|
|
240
|
+
...
|
|
241
|
+
def import_coordinates(self, arg0: GeographicCoordinateSystem2D) -> None:
|
|
242
|
+
...
|
|
243
|
+
def info(self) -> GeographicCoordinateSystemInfo2D:
|
|
244
|
+
...
|
|
245
|
+
class GeographicCoordinateSystem3D(opengeode.bin.opengeode_py_mesh.CoordinateReferenceSystem3D):
|
|
246
|
+
@staticmethod
|
|
247
|
+
def geographic_coordinate_systems() -> list[GeographicCoordinateSystemInfo3D]:
|
|
248
|
+
...
|
|
249
|
+
@staticmethod
|
|
250
|
+
def type_name_static() -> opengeode.bin.opengeode_py_mesh.CRSType:
|
|
251
|
+
...
|
|
252
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_basic.AttributeManager, arg1: GeographicCoordinateSystemInfo3D) -> None:
|
|
253
|
+
...
|
|
254
|
+
def import_coordinates(self, arg0: GeographicCoordinateSystem3D) -> None:
|
|
255
|
+
...
|
|
256
|
+
def info(self) -> GeographicCoordinateSystemInfo3D:
|
|
257
|
+
...
|
|
258
|
+
class GeographicCoordinateSystemInfo2D:
|
|
259
|
+
authority: str
|
|
260
|
+
code: str
|
|
261
|
+
name: str
|
|
262
|
+
def __init__(self, arg0: str, arg1: str, arg2: str) -> None:
|
|
263
|
+
...
|
|
264
|
+
def authority_code(self) -> str:
|
|
265
|
+
...
|
|
266
|
+
def string(self) -> str:
|
|
267
|
+
...
|
|
268
|
+
class GeographicCoordinateSystemInfo3D:
|
|
269
|
+
authority: str
|
|
270
|
+
code: str
|
|
271
|
+
name: str
|
|
272
|
+
def __init__(self, arg0: str, arg1: str, arg2: str) -> None:
|
|
273
|
+
...
|
|
274
|
+
def authority_code(self) -> str:
|
|
275
|
+
...
|
|
276
|
+
def string(self) -> str:
|
|
277
|
+
...
|
|
278
|
+
class GeosciencesExplicitLibrary:
|
|
279
|
+
@staticmethod
|
|
280
|
+
def initialize() -> None:
|
|
281
|
+
...
|
|
282
|
+
class Horizon2D(opengeode.bin.opengeode_py_model.Component2D):
|
|
283
|
+
class CONTACT_TYPE:
|
|
284
|
+
"""
|
|
285
|
+
Members:
|
|
286
|
+
|
|
287
|
+
CONFORMAL
|
|
288
|
+
|
|
289
|
+
EROSION
|
|
290
|
+
|
|
291
|
+
BASELAP
|
|
292
|
+
|
|
293
|
+
DISCONTINUITY
|
|
294
|
+
|
|
295
|
+
TOPOGRAPHY
|
|
296
|
+
|
|
297
|
+
INTRUSION
|
|
298
|
+
"""
|
|
299
|
+
BASELAP: typing.ClassVar[Horizon2D.CONTACT_TYPE] # value = <CONTACT_TYPE.BASELAP: 2>
|
|
300
|
+
CONFORMAL: typing.ClassVar[Horizon2D.CONTACT_TYPE] # value = <CONTACT_TYPE.CONFORMAL: 0>
|
|
301
|
+
DISCONTINUITY: typing.ClassVar[Horizon2D.CONTACT_TYPE] # value = <CONTACT_TYPE.DISCONTINUITY: 3>
|
|
302
|
+
EROSION: typing.ClassVar[Horizon2D.CONTACT_TYPE] # value = <CONTACT_TYPE.EROSION: 1>
|
|
303
|
+
INTRUSION: typing.ClassVar[Horizon2D.CONTACT_TYPE] # value = <CONTACT_TYPE.INTRUSION: 5>
|
|
304
|
+
TOPOGRAPHY: typing.ClassVar[Horizon2D.CONTACT_TYPE] # value = <CONTACT_TYPE.TOPOGRAPHY: 4>
|
|
305
|
+
__members__: typing.ClassVar[dict[str, Horizon2D.CONTACT_TYPE]] # value = {'CONFORMAL': <CONTACT_TYPE.CONFORMAL: 0>, 'EROSION': <CONTACT_TYPE.EROSION: 1>, 'BASELAP': <CONTACT_TYPE.BASELAP: 2>, 'DISCONTINUITY': <CONTACT_TYPE.DISCONTINUITY: 3>, 'TOPOGRAPHY': <CONTACT_TYPE.TOPOGRAPHY: 4>, 'INTRUSION': <CONTACT_TYPE.INTRUSION: 5>}
|
|
306
|
+
def __eq__(self, other: typing.Any) -> bool:
|
|
307
|
+
...
|
|
308
|
+
def __getstate__(self) -> int:
|
|
309
|
+
...
|
|
310
|
+
def __hash__(self) -> int:
|
|
311
|
+
...
|
|
312
|
+
def __index__(self) -> int:
|
|
313
|
+
...
|
|
314
|
+
def __init__(self, value: int) -> None:
|
|
315
|
+
...
|
|
316
|
+
def __int__(self) -> int:
|
|
317
|
+
...
|
|
318
|
+
def __ne__(self, other: typing.Any) -> bool:
|
|
319
|
+
...
|
|
320
|
+
def __repr__(self) -> str:
|
|
321
|
+
...
|
|
322
|
+
def __setstate__(self, state: int) -> None:
|
|
323
|
+
...
|
|
324
|
+
def __str__(self) -> str:
|
|
325
|
+
...
|
|
326
|
+
@property
|
|
327
|
+
def name(self) -> str:
|
|
328
|
+
...
|
|
329
|
+
@property
|
|
330
|
+
def value(self) -> int:
|
|
331
|
+
...
|
|
332
|
+
def component_id(self) -> opengeode.bin.opengeode_py_model.ComponentID:
|
|
333
|
+
...
|
|
334
|
+
def contact_type(self) -> Horizon2D.CONTACT_TYPE:
|
|
335
|
+
...
|
|
336
|
+
class Horizon3D(opengeode.bin.opengeode_py_model.Component3D):
|
|
337
|
+
class CONTACT_TYPE:
|
|
338
|
+
"""
|
|
339
|
+
Members:
|
|
340
|
+
|
|
341
|
+
CONFORMAL
|
|
342
|
+
|
|
343
|
+
EROSION
|
|
344
|
+
|
|
345
|
+
BASELAP
|
|
346
|
+
|
|
347
|
+
DISCONTINUITY
|
|
348
|
+
|
|
349
|
+
TOPOGRAPHY
|
|
350
|
+
|
|
351
|
+
INTRUSION
|
|
352
|
+
"""
|
|
353
|
+
BASELAP: typing.ClassVar[Horizon3D.CONTACT_TYPE] # value = <CONTACT_TYPE.BASELAP: 2>
|
|
354
|
+
CONFORMAL: typing.ClassVar[Horizon3D.CONTACT_TYPE] # value = <CONTACT_TYPE.CONFORMAL: 0>
|
|
355
|
+
DISCONTINUITY: typing.ClassVar[Horizon3D.CONTACT_TYPE] # value = <CONTACT_TYPE.DISCONTINUITY: 3>
|
|
356
|
+
EROSION: typing.ClassVar[Horizon3D.CONTACT_TYPE] # value = <CONTACT_TYPE.EROSION: 1>
|
|
357
|
+
INTRUSION: typing.ClassVar[Horizon3D.CONTACT_TYPE] # value = <CONTACT_TYPE.INTRUSION: 5>
|
|
358
|
+
TOPOGRAPHY: typing.ClassVar[Horizon3D.CONTACT_TYPE] # value = <CONTACT_TYPE.TOPOGRAPHY: 4>
|
|
359
|
+
__members__: typing.ClassVar[dict[str, Horizon3D.CONTACT_TYPE]] # value = {'CONFORMAL': <CONTACT_TYPE.CONFORMAL: 0>, 'EROSION': <CONTACT_TYPE.EROSION: 1>, 'BASELAP': <CONTACT_TYPE.BASELAP: 2>, 'DISCONTINUITY': <CONTACT_TYPE.DISCONTINUITY: 3>, 'TOPOGRAPHY': <CONTACT_TYPE.TOPOGRAPHY: 4>, 'INTRUSION': <CONTACT_TYPE.INTRUSION: 5>}
|
|
360
|
+
def __eq__(self, other: typing.Any) -> bool:
|
|
361
|
+
...
|
|
362
|
+
def __getstate__(self) -> int:
|
|
363
|
+
...
|
|
364
|
+
def __hash__(self) -> int:
|
|
365
|
+
...
|
|
366
|
+
def __index__(self) -> int:
|
|
367
|
+
...
|
|
368
|
+
def __init__(self, value: int) -> None:
|
|
369
|
+
...
|
|
370
|
+
def __int__(self) -> int:
|
|
371
|
+
...
|
|
372
|
+
def __ne__(self, other: typing.Any) -> bool:
|
|
373
|
+
...
|
|
374
|
+
def __repr__(self) -> str:
|
|
375
|
+
...
|
|
376
|
+
def __setstate__(self, state: int) -> None:
|
|
377
|
+
...
|
|
378
|
+
def __str__(self) -> str:
|
|
379
|
+
...
|
|
380
|
+
@property
|
|
381
|
+
def name(self) -> str:
|
|
382
|
+
...
|
|
383
|
+
@property
|
|
384
|
+
def value(self) -> int:
|
|
385
|
+
...
|
|
386
|
+
def component_id(self) -> opengeode.bin.opengeode_py_model.ComponentID:
|
|
387
|
+
...
|
|
388
|
+
def contact_type(self) -> Horizon3D.CONTACT_TYPE:
|
|
389
|
+
...
|
|
390
|
+
class Horizons2D:
|
|
391
|
+
def horizon(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> Horizon2D:
|
|
392
|
+
...
|
|
393
|
+
def horizons(self) -> list[Horizon2D]:
|
|
394
|
+
...
|
|
395
|
+
def nb_horizons(self) -> int:
|
|
396
|
+
...
|
|
397
|
+
class Horizons3D:
|
|
398
|
+
def horizon(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> Horizon3D:
|
|
399
|
+
...
|
|
400
|
+
def horizons(self) -> list[Horizon3D]:
|
|
401
|
+
...
|
|
402
|
+
def nb_horizons(self) -> int:
|
|
403
|
+
...
|
|
404
|
+
class HorizonsBuilder2D:
|
|
405
|
+
def set_horizon_contact_type(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: Horizon2D.CONTACT_TYPE) -> None:
|
|
406
|
+
...
|
|
407
|
+
def set_horizon_name(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: str) -> None:
|
|
408
|
+
...
|
|
409
|
+
class HorizonsBuilder3D:
|
|
410
|
+
def set_horizon_contact_type(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: Horizon3D.CONTACT_TYPE) -> None:
|
|
411
|
+
...
|
|
412
|
+
def set_horizon_name(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: str) -> None:
|
|
413
|
+
...
|
|
414
|
+
class StratigraphicUnit2D(opengeode.bin.opengeode_py_model.Component2D):
|
|
415
|
+
def component_id(self) -> opengeode.bin.opengeode_py_model.ComponentID:
|
|
416
|
+
...
|
|
417
|
+
class StratigraphicUnit3D(opengeode.bin.opengeode_py_model.Component3D):
|
|
418
|
+
def component_id(self) -> opengeode.bin.opengeode_py_model.ComponentID:
|
|
419
|
+
...
|
|
420
|
+
class StratigraphicUnits2D:
|
|
421
|
+
def nb_stratigraphic_units(self) -> int:
|
|
422
|
+
...
|
|
423
|
+
def stratigraphic_unit(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> StratigraphicUnit2D:
|
|
424
|
+
...
|
|
425
|
+
def stratigraphic_units(self) -> list[StratigraphicUnit2D]:
|
|
426
|
+
...
|
|
427
|
+
class StratigraphicUnits3D:
|
|
428
|
+
def nb_stratigraphic_units(self) -> int:
|
|
429
|
+
...
|
|
430
|
+
def stratigraphic_unit(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> StratigraphicUnit3D:
|
|
431
|
+
...
|
|
432
|
+
def stratigraphic_units(self) -> list[StratigraphicUnit3D]:
|
|
433
|
+
...
|
|
434
|
+
class StratigraphicUnitsBuilder2D:
|
|
435
|
+
def set_stratigraphic_unit_name(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: str) -> None:
|
|
436
|
+
...
|
|
437
|
+
class StratigraphicUnitsBuilder3D:
|
|
438
|
+
def set_stratigraphic_unit_name(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: str) -> None:
|
|
439
|
+
...
|
|
440
|
+
class StructuralModel(opengeode.bin.opengeode_py_model.BRep, Faults3D, Horizons3D, FaultBlocks3D, StratigraphicUnits3D):
|
|
441
|
+
@typing.overload
|
|
442
|
+
def __init__(self) -> None:
|
|
443
|
+
...
|
|
444
|
+
@typing.overload
|
|
445
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_model.BRep) -> None:
|
|
446
|
+
...
|
|
447
|
+
def fault_block_items(self, arg0: FaultBlock3D) -> list[opengeode.bin.opengeode_py_model.Block3D]:
|
|
448
|
+
...
|
|
449
|
+
def fault_items(self, arg0: Fault3D) -> list[opengeode.bin.opengeode_py_model.Surface3D]:
|
|
450
|
+
...
|
|
451
|
+
def horizon_items(self, arg0: Horizon3D) -> list[opengeode.bin.opengeode_py_model.Surface3D]:
|
|
452
|
+
...
|
|
453
|
+
def native_extension(self) -> str:
|
|
454
|
+
...
|
|
455
|
+
def stratigraphic_unit_items(self, arg0: StratigraphicUnit3D) -> list[opengeode.bin.opengeode_py_model.Block3D]:
|
|
456
|
+
...
|
|
457
|
+
def structural_model_component(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> opengeode.bin.opengeode_py_model.Component3D:
|
|
458
|
+
...
|
|
459
|
+
class StructuralModelBuilder(opengeode.bin.opengeode_py_model.BRepBuilder, FaultsBuilder3D, HorizonsBuilder3D, FaultBlocksBuilder3D, StratigraphicUnitsBuilder3D):
|
|
460
|
+
def __init__(self, arg0: StructuralModel) -> None:
|
|
461
|
+
...
|
|
462
|
+
def add_block_in_fault_block(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: FaultBlock3D) -> int:
|
|
463
|
+
...
|
|
464
|
+
def add_block_in_stratigraphic_unit(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: StratigraphicUnit3D) -> int:
|
|
465
|
+
...
|
|
466
|
+
def add_fault(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
467
|
+
...
|
|
468
|
+
def add_fault_block(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
469
|
+
...
|
|
470
|
+
def add_horizon(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
471
|
+
...
|
|
472
|
+
def add_stratigraphic_unit(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
473
|
+
...
|
|
474
|
+
def add_surface_in_fault(self, arg0: opengeode.bin.opengeode_py_model.Surface3D, arg1: Fault3D) -> int:
|
|
475
|
+
...
|
|
476
|
+
def add_surface_in_horizon(self, arg0: opengeode.bin.opengeode_py_model.Surface3D, arg1: Horizon3D) -> int:
|
|
477
|
+
...
|
|
478
|
+
def copy(self, arg0: StructuralModel) -> None:
|
|
479
|
+
...
|
|
480
|
+
def remove_fault(self, arg0: Fault3D) -> None:
|
|
481
|
+
...
|
|
482
|
+
def remove_fault_block(self, arg0: FaultBlock3D) -> None:
|
|
483
|
+
...
|
|
484
|
+
def remove_horizon(self, arg0: Horizon3D) -> None:
|
|
485
|
+
...
|
|
486
|
+
def remove_stratigraphic_unit(self, arg0: StratigraphicUnit3D) -> None:
|
|
487
|
+
...
|
|
488
|
+
class StructuralModelInputFactory:
|
|
489
|
+
@staticmethod
|
|
490
|
+
def list_creators() -> list[str]:
|
|
491
|
+
...
|
|
492
|
+
def has_creator(self: str) -> bool:
|
|
493
|
+
...
|
|
494
|
+
class StructuralModelOutputFactory:
|
|
495
|
+
@staticmethod
|
|
496
|
+
def list_creators() -> list[str]:
|
|
497
|
+
...
|
|
498
|
+
def has_creator(self: str) -> bool:
|
|
499
|
+
...
|
|
500
|
+
def assign_brep_geographic_coordinate_system_info(arg0: opengeode.bin.opengeode_py_model.BRep, arg1: opengeode.bin.opengeode_py_model.BRepBuilder, arg2: str, arg3: GeographicCoordinateSystemInfo3D) -> None:
|
|
501
|
+
...
|
|
502
|
+
def assign_edged_curve_geographic_coordinate_system_info2D(arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve2D, arg1: opengeode.bin.opengeode_py_mesh.EdgedCurveBuilder2D, arg2: str, arg3: GeographicCoordinateSystemInfo2D) -> None:
|
|
503
|
+
...
|
|
504
|
+
def assign_edged_curve_geographic_coordinate_system_info3D(arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve3D, arg1: opengeode.bin.opengeode_py_mesh.EdgedCurveBuilder3D, arg2: str, arg3: GeographicCoordinateSystemInfo3D) -> None:
|
|
505
|
+
...
|
|
506
|
+
def assign_point_set_geographic_coordinate_system_info2D(arg0: opengeode.bin.opengeode_py_mesh.PointSet2D, arg1: opengeode.bin.opengeode_py_mesh.PointSetBuilder2D, arg2: str, arg3: GeographicCoordinateSystemInfo2D) -> None:
|
|
507
|
+
...
|
|
508
|
+
def assign_point_set_geographic_coordinate_system_info3D(arg0: opengeode.bin.opengeode_py_mesh.PointSet3D, arg1: opengeode.bin.opengeode_py_mesh.PointSetBuilder3D, arg2: str, arg3: GeographicCoordinateSystemInfo3D) -> None:
|
|
509
|
+
...
|
|
510
|
+
def assign_section_geographic_coordinate_system_info(arg0: opengeode.bin.opengeode_py_model.Section, arg1: opengeode.bin.opengeode_py_model.SectionBuilder, arg2: str, arg3: GeographicCoordinateSystemInfo2D) -> None:
|
|
511
|
+
...
|
|
512
|
+
def assign_solid_mesh_geographic_coordinate_system_info3D(arg0: opengeode.bin.opengeode_py_mesh.SolidMesh3D, arg1: opengeode.bin.opengeode_py_mesh.SolidMeshBuilder3D, arg2: str, arg3: GeographicCoordinateSystemInfo3D) -> None:
|
|
513
|
+
...
|
|
514
|
+
def assign_surface_mesh_geographic_coordinate_system_info2D(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh2D, arg1: opengeode.bin.opengeode_py_mesh.SurfaceMeshBuilder2D, arg2: str, arg3: GeographicCoordinateSystemInfo2D) -> None:
|
|
515
|
+
...
|
|
516
|
+
def assign_surface_mesh_geographic_coordinate_system_info3D(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh3D, arg1: opengeode.bin.opengeode_py_mesh.SurfaceMeshBuilder3D, arg2: str, arg3: GeographicCoordinateSystemInfo3D) -> None:
|
|
517
|
+
...
|
|
518
|
+
def convert_brep_coordinate_reference_system(arg0: opengeode.bin.opengeode_py_model.BRep, arg1: opengeode.bin.opengeode_py_model.BRepBuilder, arg2: str, arg3: GeographicCoordinateSystemInfo3D) -> None:
|
|
519
|
+
...
|
|
520
|
+
def convert_edged_curve_coordinate_reference_system2D(arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve2D, arg1: opengeode.bin.opengeode_py_mesh.EdgedCurveBuilder2D, arg2: str, arg3: GeographicCoordinateSystemInfo2D) -> None:
|
|
521
|
+
...
|
|
522
|
+
def convert_edged_curve_coordinate_reference_system3D(arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve3D, arg1: opengeode.bin.opengeode_py_mesh.EdgedCurveBuilder3D, arg2: str, arg3: GeographicCoordinateSystemInfo3D) -> None:
|
|
523
|
+
...
|
|
524
|
+
def convert_point_set_coordinate_reference_system2D(arg0: opengeode.bin.opengeode_py_mesh.PointSet2D, arg1: opengeode.bin.opengeode_py_mesh.PointSetBuilder2D, arg2: str, arg3: GeographicCoordinateSystemInfo2D) -> None:
|
|
525
|
+
...
|
|
526
|
+
def convert_point_set_coordinate_reference_system3D(arg0: opengeode.bin.opengeode_py_mesh.PointSet3D, arg1: opengeode.bin.opengeode_py_mesh.PointSetBuilder3D, arg2: str, arg3: GeographicCoordinateSystemInfo3D) -> None:
|
|
527
|
+
...
|
|
528
|
+
def convert_section_coordinate_reference_system(arg0: opengeode.bin.opengeode_py_model.Section, arg1: opengeode.bin.opengeode_py_model.SectionBuilder, arg2: str, arg3: GeographicCoordinateSystemInfo2D) -> None:
|
|
529
|
+
...
|
|
530
|
+
def convert_solid_mesh_coordinate_reference_system3D(arg0: opengeode.bin.opengeode_py_mesh.SolidMesh3D, arg1: opengeode.bin.opengeode_py_mesh.SolidMeshBuilder3D, arg2: str, arg3: GeographicCoordinateSystemInfo3D) -> None:
|
|
531
|
+
...
|
|
532
|
+
def convert_surface_mesh_coordinate_reference_system2D(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh2D, arg1: opengeode.bin.opengeode_py_mesh.SurfaceMeshBuilder2D, arg2: str, arg3: GeographicCoordinateSystemInfo2D) -> None:
|
|
533
|
+
...
|
|
534
|
+
def convert_surface_mesh_coordinate_reference_system3D(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh3D, arg1: opengeode.bin.opengeode_py_mesh.SurfaceMeshBuilder3D, arg2: str, arg3: GeographicCoordinateSystemInfo3D) -> None:
|
|
535
|
+
...
|
|
536
|
+
def cross_section_additional_files(arg0: str) -> opengeode.bin.opengeode_py_basic.AdditionalFiles:
|
|
537
|
+
...
|
|
538
|
+
def cross_section_object_priority(arg0: str) -> int:
|
|
539
|
+
...
|
|
540
|
+
def is_cross_section_loadable(arg0: str) -> opengeode.bin.opengeode_py_basic.Percentage:
|
|
541
|
+
...
|
|
542
|
+
def is_cross_section_saveable(arg0: CrossSection, arg1: str) -> bool:
|
|
543
|
+
...
|
|
544
|
+
def is_structural_model_loadable(arg0: str) -> opengeode.bin.opengeode_py_basic.Percentage:
|
|
545
|
+
...
|
|
546
|
+
def is_structural_model_saveable(arg0: StructuralModel, arg1: str) -> bool:
|
|
547
|
+
...
|
|
548
|
+
def load_cross_section(arg0: str) -> CrossSection:
|
|
549
|
+
...
|
|
550
|
+
def load_structural_model(arg0: str) -> StructuralModel:
|
|
551
|
+
...
|
|
552
|
+
def save_cross_section(arg0: CrossSection, arg1: str) -> list[str]:
|
|
553
|
+
...
|
|
554
|
+
def save_structural_model(arg0: StructuralModel, arg1: str) -> list[str]:
|
|
555
|
+
...
|
|
556
|
+
def structural_model_additional_files(arg0: str) -> opengeode.bin.opengeode_py_basic.AdditionalFiles:
|
|
557
|
+
...
|
|
558
|
+
def structural_model_object_priority(arg0: str) -> int:
|
|
559
|
+
...
|