OpenGeode-Geosciences 9.3.0__cp310-cp310-win_amd64.whl → 9.4.0__cp310-cp310-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.

Potentially problematic release.


This version of OpenGeode-Geosciences might be problematic. Click here for more details.

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