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,490 @@
|
|
|
1
|
+
"""
|
|
2
|
+
OpenGeode-Geosciences Python binding for implicit
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
import opengeode.bin.opengeode_py_basic
|
|
6
|
+
import opengeode.bin.opengeode_py_geometry
|
|
7
|
+
import opengeode.bin.opengeode_py_mesh
|
|
8
|
+
import opengeode.bin.opengeode_py_model
|
|
9
|
+
import opengeode_geosciences.bin.opengeode_geosciences_py_explicit
|
|
10
|
+
import pybind11_stubgen.typing_ext
|
|
11
|
+
import typing
|
|
12
|
+
__all__: list[str] = ['GeosciencesImplicitLibrary', 'HorizonsStack2D', 'HorizonsStack3D', 'HorizonsStackBuilder2D', 'HorizonsStackBuilder3D', 'HorizonsStackInputFactory2D', 'HorizonsStackInputFactory3D', 'HorizonsStackOutputFactory2D', 'HorizonsStackOutputFactory3D', 'ImplicitCrossSection', 'ImplicitCrossSectionBuilder', 'ImplicitCrossSectionInputFactory', 'ImplicitCrossSectionOutputFactory', 'ImplicitStructuralModel', 'ImplicitStructuralModelBuilder', 'ImplicitStructuralModelInputFactory', 'ImplicitStructuralModelOutputFactory', 'StratigraphicModel', 'StratigraphicModelBuilder', 'StratigraphicModelInputFactory', 'StratigraphicModelOutputFactory', 'StratigraphicPoint2D', 'StratigraphicPoint3D', 'StratigraphicRelationships', 'StratigraphicRelationshipsBuilder', 'StratigraphicSection', 'StratigraphicSectionBuilder', 'StratigraphicSectionInputFactory', 'StratigraphicSectionOutputFactory', 'horizon_id_from_name_2d', 'horizon_id_from_name_3d', 'horizons_stack_additional_files2D', 'horizons_stack_additional_files3D', 'horizons_stack_from_bottom_to_top_names_2d', 'horizons_stack_from_bottom_to_top_names_3d', 'horizons_stack_from_top_to_bottom_names_2d', 'horizons_stack_from_top_to_bottom_names_3d', 'horizons_stack_object_priority2D', 'horizons_stack_object_priority3D', 'implicit_cross_section_additional_files', 'implicit_cross_section_object_priority', 'implicit_model_from_structural_model_scalar_field', 'implicit_section_from_cross_section_scalar_field', 'implicit_structural_model_additional_files', 'implicit_structural_model_object_priority', 'is_horizons_stack_loadable2D', 'is_horizons_stack_loadable3D', 'is_implicit_cross_section_loadable', 'is_implicit_cross_section_saveable', 'is_implicit_structural_model_loadable', 'is_implicit_structural_model_saveable', 'is_stratigraphic_model_loadable', 'is_stratigraphic_model_saveable', 'is_stratigraphic_section_loadable', 'is_stratigraphic_section_saveable', 'load_horizons_stack2D', 'load_horizons_stack3D', 'load_implicit_cross_section', 'load_implicit_structural_model', 'load_stratigraphic_model', 'load_stratigraphic_section', 'repair_horizon_stack_if_possible_2d', 'repair_horizon_stack_if_possible_3d', 'rescale_model_implicit_value', 'rescale_model_implicit_value_to_bbox_scale', 'rescale_section_implicit_value', 'rescale_section_implicit_value_to_bbox_scale', 'save_horizons_stack2D', 'save_horizons_stack3D', 'save_implicit_cross_section', 'save_implicit_structural_model', 'save_stratigraphic_blocks', 'save_stratigraphic_model', 'save_stratigraphic_section', 'save_stratigraphic_surfaces', 'stratigraphic_model_additional_files', 'stratigraphic_model_from_implicit_model_and_coords', 'stratigraphic_model_object_priority', 'stratigraphic_section_additional_files', 'stratigraphic_section_object_priority']
|
|
13
|
+
class GeosciencesImplicitLibrary:
|
|
14
|
+
@staticmethod
|
|
15
|
+
def initialize() -> None:
|
|
16
|
+
...
|
|
17
|
+
class HorizonsStack2D(StratigraphicRelationships, opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizons2D, opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnits2D, opengeode.bin.opengeode_py_basic.Identifier):
|
|
18
|
+
def __init__(self) -> None:
|
|
19
|
+
...
|
|
20
|
+
def bottom_horizon(self) -> opengeode.bin.opengeode_py_basic.uuid | None:
|
|
21
|
+
...
|
|
22
|
+
def bottom_to_top_horizons(self) -> list[opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon2D]:
|
|
23
|
+
...
|
|
24
|
+
def bottom_to_top_units(self) -> list[opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnit2D]:
|
|
25
|
+
...
|
|
26
|
+
def horizon_stack_component(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> opengeode.bin.opengeode_py_model.Component2D:
|
|
27
|
+
...
|
|
28
|
+
def native_extension(self) -> str:
|
|
29
|
+
...
|
|
30
|
+
def top_horizon(self) -> opengeode.bin.opengeode_py_basic.uuid | None:
|
|
31
|
+
...
|
|
32
|
+
def top_to_bottom_horizons(self) -> list[opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon2D]:
|
|
33
|
+
...
|
|
34
|
+
def top_to_bottom_units(self) -> list[opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnit2D]:
|
|
35
|
+
...
|
|
36
|
+
class HorizonsStack3D(StratigraphicRelationships, opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizons3D, opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnits3D, opengeode.bin.opengeode_py_basic.Identifier):
|
|
37
|
+
def __init__(self) -> None:
|
|
38
|
+
...
|
|
39
|
+
def bottom_horizon(self) -> opengeode.bin.opengeode_py_basic.uuid | None:
|
|
40
|
+
...
|
|
41
|
+
def bottom_to_top_horizons(self) -> list[opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon3D]:
|
|
42
|
+
...
|
|
43
|
+
def bottom_to_top_units(self) -> list[opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnit3D]:
|
|
44
|
+
...
|
|
45
|
+
def horizon_stack_component(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> opengeode.bin.opengeode_py_model.Component3D:
|
|
46
|
+
...
|
|
47
|
+
def native_extension(self) -> str:
|
|
48
|
+
...
|
|
49
|
+
def top_horizon(self) -> opengeode.bin.opengeode_py_basic.uuid | None:
|
|
50
|
+
...
|
|
51
|
+
def top_to_bottom_horizons(self) -> list[opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon3D]:
|
|
52
|
+
...
|
|
53
|
+
def top_to_bottom_units(self) -> list[opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnit3D]:
|
|
54
|
+
...
|
|
55
|
+
class HorizonsStackBuilder2D(StratigraphicRelationshipsBuilder, opengeode_geosciences.bin.opengeode_geosciences_py_explicit.HorizonsBuilder2D, opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnitsBuilder2D, opengeode.bin.opengeode_py_basic.IdentifierBuilder):
|
|
56
|
+
def __init__(self, arg0: HorizonsStack2D) -> None:
|
|
57
|
+
...
|
|
58
|
+
def add_horizon(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
59
|
+
...
|
|
60
|
+
def add_stratigraphic_unit(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
61
|
+
...
|
|
62
|
+
def copy(self, arg0: HorizonsStack2D) -> None:
|
|
63
|
+
...
|
|
64
|
+
def copy_components(self, arg0: HorizonsStack2D) -> None:
|
|
65
|
+
...
|
|
66
|
+
def remove_horizon(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon2D) -> None:
|
|
67
|
+
...
|
|
68
|
+
def remove_stratigraphic_unit(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnit2D) -> None:
|
|
69
|
+
...
|
|
70
|
+
def set_horizon_above(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon2D, arg1: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnit2D) -> None:
|
|
71
|
+
...
|
|
72
|
+
def set_horizon_under(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon2D, arg1: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnit2D) -> None:
|
|
73
|
+
...
|
|
74
|
+
class HorizonsStackBuilder3D(StratigraphicRelationshipsBuilder, opengeode_geosciences.bin.opengeode_geosciences_py_explicit.HorizonsBuilder3D, opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnitsBuilder3D, opengeode.bin.opengeode_py_basic.IdentifierBuilder):
|
|
75
|
+
def __init__(self, arg0: HorizonsStack3D) -> None:
|
|
76
|
+
...
|
|
77
|
+
def add_horizon(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
78
|
+
...
|
|
79
|
+
def add_stratigraphic_unit(self) -> opengeode.bin.opengeode_py_basic.uuid:
|
|
80
|
+
...
|
|
81
|
+
def copy(self, arg0: HorizonsStack3D) -> None:
|
|
82
|
+
...
|
|
83
|
+
def copy_components(self, arg0: HorizonsStack3D) -> None:
|
|
84
|
+
...
|
|
85
|
+
def remove_horizon(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon3D) -> None:
|
|
86
|
+
...
|
|
87
|
+
def remove_stratigraphic_unit(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnit3D) -> None:
|
|
88
|
+
...
|
|
89
|
+
def set_horizon_above(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon3D, arg1: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnit3D) -> None:
|
|
90
|
+
...
|
|
91
|
+
def set_horizon_under(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon3D, arg1: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StratigraphicUnit3D) -> None:
|
|
92
|
+
...
|
|
93
|
+
class HorizonsStackInputFactory2D:
|
|
94
|
+
@staticmethod
|
|
95
|
+
def list_creators() -> list[str]:
|
|
96
|
+
...
|
|
97
|
+
def has_creator(self: str) -> bool:
|
|
98
|
+
...
|
|
99
|
+
class HorizonsStackInputFactory3D:
|
|
100
|
+
@staticmethod
|
|
101
|
+
def list_creators() -> list[str]:
|
|
102
|
+
...
|
|
103
|
+
def has_creator(self: str) -> bool:
|
|
104
|
+
...
|
|
105
|
+
class HorizonsStackOutputFactory2D:
|
|
106
|
+
@staticmethod
|
|
107
|
+
def list_creators() -> list[str]:
|
|
108
|
+
...
|
|
109
|
+
def has_creator(self: str) -> bool:
|
|
110
|
+
...
|
|
111
|
+
class HorizonsStackOutputFactory3D:
|
|
112
|
+
@staticmethod
|
|
113
|
+
def list_creators() -> list[str]:
|
|
114
|
+
...
|
|
115
|
+
def has_creator(self: str) -> bool:
|
|
116
|
+
...
|
|
117
|
+
class ImplicitCrossSection(opengeode_geosciences.bin.opengeode_geosciences_py_explicit.CrossSection):
|
|
118
|
+
@typing.overload
|
|
119
|
+
def __init__(self) -> None:
|
|
120
|
+
...
|
|
121
|
+
@typing.overload
|
|
122
|
+
def __init__(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.CrossSection) -> None:
|
|
123
|
+
...
|
|
124
|
+
def containing_stratigraphic_unit(self, arg0: float) -> opengeode.bin.opengeode_py_basic.uuid | None:
|
|
125
|
+
...
|
|
126
|
+
def horizon_implicit_value(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon2D) -> float | None:
|
|
127
|
+
...
|
|
128
|
+
def horizons_stack(self) -> HorizonsStack2D:
|
|
129
|
+
...
|
|
130
|
+
def implicit_cross_section_component(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> opengeode.bin.opengeode_py_model.Component2D:
|
|
131
|
+
...
|
|
132
|
+
def implicit_value_from_geometric_point(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: opengeode.bin.opengeode_py_geometry.Point2D) -> float | None:
|
|
133
|
+
...
|
|
134
|
+
def implicit_value_from_geometric_point_and_triangle_id(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: opengeode.bin.opengeode_py_geometry.Point2D, arg2: int) -> float:
|
|
135
|
+
...
|
|
136
|
+
def implicit_value_from_vertex_id(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: int) -> float:
|
|
137
|
+
...
|
|
138
|
+
def implicit_value_is_above_horizon(self, arg0: float, arg1: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon2D) -> bool:
|
|
139
|
+
...
|
|
140
|
+
def native_extension(self) -> str:
|
|
141
|
+
...
|
|
142
|
+
class ImplicitCrossSectionBuilder(opengeode_geosciences.bin.opengeode_geosciences_py_explicit.CrossSectionBuilder):
|
|
143
|
+
def __init__(self, arg0: ImplicitCrossSection) -> None:
|
|
144
|
+
...
|
|
145
|
+
def copy(self, arg0: ImplicitCrossSection) -> None:
|
|
146
|
+
...
|
|
147
|
+
def horizons_stack_builder(self) -> HorizonsStackBuilder2D:
|
|
148
|
+
...
|
|
149
|
+
def instantiate_implicit_attribute_on_surfaces(self) -> None:
|
|
150
|
+
...
|
|
151
|
+
def set_horizon_implicit_value(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon2D, arg1: float) -> None:
|
|
152
|
+
...
|
|
153
|
+
def set_horizons_stack(self, arg0: HorizonsStack2D) -> None:
|
|
154
|
+
...
|
|
155
|
+
def set_implicit_value(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: int, arg2: float) -> None:
|
|
156
|
+
...
|
|
157
|
+
class ImplicitCrossSectionInputFactory:
|
|
158
|
+
@staticmethod
|
|
159
|
+
def list_creators() -> list[str]:
|
|
160
|
+
...
|
|
161
|
+
def has_creator(self: str) -> bool:
|
|
162
|
+
...
|
|
163
|
+
class ImplicitCrossSectionOutputFactory:
|
|
164
|
+
@staticmethod
|
|
165
|
+
def list_creators() -> list[str]:
|
|
166
|
+
...
|
|
167
|
+
def has_creator(self: str) -> bool:
|
|
168
|
+
...
|
|
169
|
+
class ImplicitStructuralModel(opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StructuralModel):
|
|
170
|
+
@typing.overload
|
|
171
|
+
def __init__(self) -> None:
|
|
172
|
+
...
|
|
173
|
+
@typing.overload
|
|
174
|
+
def __init__(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StructuralModel) -> None:
|
|
175
|
+
...
|
|
176
|
+
def containing_stratigraphic_unit(self, arg0: float) -> opengeode.bin.opengeode_py_basic.uuid | None:
|
|
177
|
+
...
|
|
178
|
+
def horizon_implicit_value(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon3D) -> float | None:
|
|
179
|
+
...
|
|
180
|
+
def horizons_stack(self) -> HorizonsStack3D:
|
|
181
|
+
...
|
|
182
|
+
def implicit_structural_model_component(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> opengeode.bin.opengeode_py_model.Component3D:
|
|
183
|
+
...
|
|
184
|
+
def implicit_value_from_geometric_point(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: opengeode.bin.opengeode_py_geometry.Point3D) -> float | None:
|
|
185
|
+
...
|
|
186
|
+
def implicit_value_from_geometric_point_and_tetra_id(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: opengeode.bin.opengeode_py_geometry.Point3D, arg2: int) -> float:
|
|
187
|
+
...
|
|
188
|
+
def implicit_value_from_vertex_id(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: int) -> float:
|
|
189
|
+
...
|
|
190
|
+
def implicit_value_is_above_horizon(self, arg0: float, arg1: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon3D) -> bool:
|
|
191
|
+
...
|
|
192
|
+
def native_extension(self) -> str:
|
|
193
|
+
...
|
|
194
|
+
class ImplicitStructuralModelBuilder(opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StructuralModelBuilder):
|
|
195
|
+
def __init__(self, arg0: ImplicitStructuralModel) -> None:
|
|
196
|
+
...
|
|
197
|
+
def copy(self, arg0: ImplicitStructuralModel) -> None:
|
|
198
|
+
...
|
|
199
|
+
def horizons_stack_builder(self) -> HorizonsStackBuilder3D:
|
|
200
|
+
...
|
|
201
|
+
def instantiate_implicit_attribute_on_blocks(self) -> None:
|
|
202
|
+
...
|
|
203
|
+
def set_horizon_implicit_value(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.Horizon3D, arg1: float) -> None:
|
|
204
|
+
...
|
|
205
|
+
def set_horizons_stack(self, arg0: HorizonsStack3D) -> None:
|
|
206
|
+
...
|
|
207
|
+
def set_implicit_value(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: int, arg2: float) -> None:
|
|
208
|
+
...
|
|
209
|
+
class ImplicitStructuralModelInputFactory:
|
|
210
|
+
@staticmethod
|
|
211
|
+
def list_creators() -> list[str]:
|
|
212
|
+
...
|
|
213
|
+
def has_creator(self: str) -> bool:
|
|
214
|
+
...
|
|
215
|
+
class ImplicitStructuralModelOutputFactory:
|
|
216
|
+
@staticmethod
|
|
217
|
+
def list_creators() -> list[str]:
|
|
218
|
+
...
|
|
219
|
+
def has_creator(self: str) -> bool:
|
|
220
|
+
...
|
|
221
|
+
class StratigraphicModel(ImplicitStructuralModel):
|
|
222
|
+
@typing.overload
|
|
223
|
+
def __init__(self) -> None:
|
|
224
|
+
...
|
|
225
|
+
@typing.overload
|
|
226
|
+
def __init__(self, arg0: ImplicitStructuralModel) -> None:
|
|
227
|
+
...
|
|
228
|
+
@typing.overload
|
|
229
|
+
def __init__(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StructuralModel) -> None:
|
|
230
|
+
...
|
|
231
|
+
def geometric_coordinates_from_stratigraphic_point(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: StratigraphicPoint3D) -> opengeode.bin.opengeode_py_geometry.Point3D | None:
|
|
232
|
+
...
|
|
233
|
+
def geometric_coordinates_from_stratigraphic_point_and_tetra_id(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: StratigraphicPoint3D, arg2: int) -> opengeode.bin.opengeode_py_geometry.Point3D:
|
|
234
|
+
...
|
|
235
|
+
def native_extension(self) -> str:
|
|
236
|
+
...
|
|
237
|
+
def stratigraphic_bounding_box(self) -> opengeode.bin.opengeode_py_geometry.BoundingBox3D:
|
|
238
|
+
...
|
|
239
|
+
def stratigraphic_coordinates_from_geometric_point(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: opengeode.bin.opengeode_py_geometry.Point3D) -> StratigraphicPoint3D | None:
|
|
240
|
+
...
|
|
241
|
+
def stratigraphic_coordinates_from_geometric_point_and_tetra_id(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: opengeode.bin.opengeode_py_geometry.Point3D, arg2: int) -> StratigraphicPoint3D:
|
|
242
|
+
...
|
|
243
|
+
def stratigraphic_coordinates_from_vertex_id(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: int) -> StratigraphicPoint3D:
|
|
244
|
+
...
|
|
245
|
+
def stratigraphic_model_component(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> opengeode.bin.opengeode_py_model.Component3D:
|
|
246
|
+
...
|
|
247
|
+
def stratigraphic_surface(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: opengeode.bin.opengeode_py_model.Surface3D) -> list[opengeode.bin.opengeode_py_mesh.TriangulatedSurface3D]:
|
|
248
|
+
...
|
|
249
|
+
class StratigraphicModelBuilder(opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StructuralModelBuilder):
|
|
250
|
+
def __init__(self, arg0: StratigraphicModel) -> None:
|
|
251
|
+
...
|
|
252
|
+
def copy(self, arg0: StratigraphicModel) -> None:
|
|
253
|
+
...
|
|
254
|
+
def instantiate_stratigraphic_attribute_on_blocks(self) -> None:
|
|
255
|
+
...
|
|
256
|
+
def set_stratigraphic_coordinates(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: int, arg2: StratigraphicPoint3D) -> None:
|
|
257
|
+
...
|
|
258
|
+
def set_stratigraphic_location(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: int, arg2: opengeode.bin.opengeode_py_geometry.Point2D) -> None:
|
|
259
|
+
...
|
|
260
|
+
class StratigraphicModelInputFactory:
|
|
261
|
+
@staticmethod
|
|
262
|
+
def list_creators() -> list[str]:
|
|
263
|
+
...
|
|
264
|
+
def has_creator(self: str) -> bool:
|
|
265
|
+
...
|
|
266
|
+
class StratigraphicModelOutputFactory:
|
|
267
|
+
@staticmethod
|
|
268
|
+
def list_creators() -> list[str]:
|
|
269
|
+
...
|
|
270
|
+
def has_creator(self: str) -> bool:
|
|
271
|
+
...
|
|
272
|
+
class StratigraphicPoint2D:
|
|
273
|
+
@typing.overload
|
|
274
|
+
def __init__(self) -> None:
|
|
275
|
+
...
|
|
276
|
+
@typing.overload
|
|
277
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_geometry.Point1D, arg1: float) -> None:
|
|
278
|
+
...
|
|
279
|
+
@typing.overload
|
|
280
|
+
def __init__(self, arg0: typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(2)]) -> None:
|
|
281
|
+
...
|
|
282
|
+
@typing.overload
|
|
283
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_geometry.Point2D) -> None:
|
|
284
|
+
...
|
|
285
|
+
def implicit_value(self) -> float:
|
|
286
|
+
...
|
|
287
|
+
def set_implicit_value(self, arg0: float) -> None:
|
|
288
|
+
...
|
|
289
|
+
def set_stratigraphic_location(self, arg0: opengeode.bin.opengeode_py_geometry.Point1D) -> None:
|
|
290
|
+
...
|
|
291
|
+
def stratigraphic_coordinates(self) -> opengeode.bin.opengeode_py_geometry.Point2D:
|
|
292
|
+
...
|
|
293
|
+
def stratigraphic_location(self) -> opengeode.bin.opengeode_py_geometry.Point1D:
|
|
294
|
+
...
|
|
295
|
+
def string(self) -> str:
|
|
296
|
+
...
|
|
297
|
+
class StratigraphicPoint3D:
|
|
298
|
+
@typing.overload
|
|
299
|
+
def __init__(self) -> None:
|
|
300
|
+
...
|
|
301
|
+
@typing.overload
|
|
302
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_geometry.Point2D, arg1: float) -> None:
|
|
303
|
+
...
|
|
304
|
+
@typing.overload
|
|
305
|
+
def __init__(self, arg0: typing.Annotated[list[float], pybind11_stubgen.typing_ext.FixedSize(3)]) -> None:
|
|
306
|
+
...
|
|
307
|
+
@typing.overload
|
|
308
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_geometry.Point3D) -> None:
|
|
309
|
+
...
|
|
310
|
+
def implicit_value(self) -> float:
|
|
311
|
+
...
|
|
312
|
+
def set_implicit_value(self, arg0: float) -> None:
|
|
313
|
+
...
|
|
314
|
+
def set_stratigraphic_location(self, arg0: opengeode.bin.opengeode_py_geometry.Point2D) -> None:
|
|
315
|
+
...
|
|
316
|
+
def stratigraphic_coordinates(self) -> opengeode.bin.opengeode_py_geometry.Point3D:
|
|
317
|
+
...
|
|
318
|
+
def stratigraphic_location(self) -> opengeode.bin.opengeode_py_geometry.Point2D:
|
|
319
|
+
...
|
|
320
|
+
def string(self) -> str:
|
|
321
|
+
...
|
|
322
|
+
class StratigraphicRelationships:
|
|
323
|
+
def __init__(self) -> None:
|
|
324
|
+
...
|
|
325
|
+
def above(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> opengeode.bin.opengeode_py_basic.uuid | None:
|
|
326
|
+
...
|
|
327
|
+
def is_above(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: opengeode.bin.opengeode_py_basic.uuid) -> bool:
|
|
328
|
+
...
|
|
329
|
+
def under(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> opengeode.bin.opengeode_py_basic.uuid | None:
|
|
330
|
+
...
|
|
331
|
+
class StratigraphicRelationshipsBuilder:
|
|
332
|
+
def __init__(self, arg0: StratigraphicRelationships) -> None:
|
|
333
|
+
...
|
|
334
|
+
def remove_relation(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: opengeode.bin.opengeode_py_basic.uuid) -> None:
|
|
335
|
+
...
|
|
336
|
+
def unregister_component(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> None:
|
|
337
|
+
...
|
|
338
|
+
class StratigraphicSection(ImplicitCrossSection):
|
|
339
|
+
@typing.overload
|
|
340
|
+
def __init__(self) -> None:
|
|
341
|
+
...
|
|
342
|
+
@typing.overload
|
|
343
|
+
def __init__(self, arg0: ImplicitCrossSection) -> None:
|
|
344
|
+
...
|
|
345
|
+
@typing.overload
|
|
346
|
+
def __init__(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.CrossSection) -> None:
|
|
347
|
+
...
|
|
348
|
+
def geometric_coordinates_from_stratigraphic_point(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: StratigraphicPoint2D) -> opengeode.bin.opengeode_py_geometry.Point2D | None:
|
|
349
|
+
...
|
|
350
|
+
def geometric_coordinates_from_stratigraphic_point_and_triangle_id(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: StratigraphicPoint2D, arg2: int) -> opengeode.bin.opengeode_py_geometry.Point2D:
|
|
351
|
+
...
|
|
352
|
+
def native_extension(self) -> str:
|
|
353
|
+
...
|
|
354
|
+
def stratigraphic_bounding_box(self) -> opengeode.bin.opengeode_py_geometry.BoundingBox2D:
|
|
355
|
+
...
|
|
356
|
+
def stratigraphic_coordinates_from_geometric_point(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: opengeode.bin.opengeode_py_geometry.Point2D) -> StratigraphicPoint2D | None:
|
|
357
|
+
...
|
|
358
|
+
def stratigraphic_coordinates_from_geometric_point_and_triangle_id(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: opengeode.bin.opengeode_py_geometry.Point2D, arg2: int) -> StratigraphicPoint2D:
|
|
359
|
+
...
|
|
360
|
+
def stratigraphic_coordinates_from_vertex_id(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: int) -> StratigraphicPoint2D:
|
|
361
|
+
...
|
|
362
|
+
def stratigraphic_line(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: opengeode.bin.opengeode_py_model.Line2D) -> list[opengeode.bin.opengeode_py_mesh.EdgedCurve2D]:
|
|
363
|
+
...
|
|
364
|
+
def stratigraphic_section_component(self, arg0: opengeode.bin.opengeode_py_basic.uuid) -> opengeode.bin.opengeode_py_model.Component2D:
|
|
365
|
+
...
|
|
366
|
+
class StratigraphicSectionBuilder(opengeode_geosciences.bin.opengeode_geosciences_py_explicit.CrossSectionBuilder):
|
|
367
|
+
def __init__(self, arg0: StratigraphicSection) -> None:
|
|
368
|
+
...
|
|
369
|
+
def copy(self, arg0: StratigraphicSection) -> None:
|
|
370
|
+
...
|
|
371
|
+
def instantiate_stratigraphic_attribute_on_surfaces(self) -> None:
|
|
372
|
+
...
|
|
373
|
+
def set_stratigraphic_coordinates(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: int, arg2: StratigraphicPoint2D) -> None:
|
|
374
|
+
...
|
|
375
|
+
def set_stratigraphic_location(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: int, arg2: opengeode.bin.opengeode_py_geometry.Point1D) -> None:
|
|
376
|
+
...
|
|
377
|
+
class StratigraphicSectionInputFactory:
|
|
378
|
+
@staticmethod
|
|
379
|
+
def list_creators() -> list[str]:
|
|
380
|
+
...
|
|
381
|
+
def has_creator(self: str) -> bool:
|
|
382
|
+
...
|
|
383
|
+
class StratigraphicSectionOutputFactory:
|
|
384
|
+
@staticmethod
|
|
385
|
+
def list_creators() -> list[str]:
|
|
386
|
+
...
|
|
387
|
+
def has_creator(self: str) -> bool:
|
|
388
|
+
...
|
|
389
|
+
def horizon_id_from_name_2d(arg0: HorizonsStack2D, arg1: str) -> opengeode.bin.opengeode_py_basic.uuid | None:
|
|
390
|
+
...
|
|
391
|
+
def horizon_id_from_name_3d(arg0: HorizonsStack3D, arg1: str) -> opengeode.bin.opengeode_py_basic.uuid | None:
|
|
392
|
+
...
|
|
393
|
+
def horizons_stack_additional_files2D(arg0: str) -> opengeode.bin.opengeode_py_basic.AdditionalFiles:
|
|
394
|
+
...
|
|
395
|
+
def horizons_stack_additional_files3D(arg0: str) -> opengeode.bin.opengeode_py_basic.AdditionalFiles:
|
|
396
|
+
...
|
|
397
|
+
def horizons_stack_from_bottom_to_top_names_2d(arg0: list[str], arg1: list[str]) -> HorizonsStack2D:
|
|
398
|
+
...
|
|
399
|
+
def horizons_stack_from_bottom_to_top_names_3d(arg0: list[str], arg1: list[str]) -> HorizonsStack3D:
|
|
400
|
+
...
|
|
401
|
+
def horizons_stack_from_top_to_bottom_names_2d(arg0: list[str], arg1: list[str]) -> HorizonsStack2D:
|
|
402
|
+
...
|
|
403
|
+
def horizons_stack_from_top_to_bottom_names_3d(arg0: list[str], arg1: list[str]) -> HorizonsStack3D:
|
|
404
|
+
...
|
|
405
|
+
def horizons_stack_object_priority2D(arg0: str) -> int:
|
|
406
|
+
...
|
|
407
|
+
def horizons_stack_object_priority3D(arg0: str) -> int:
|
|
408
|
+
...
|
|
409
|
+
def implicit_cross_section_additional_files(arg0: str) -> opengeode.bin.opengeode_py_basic.AdditionalFiles:
|
|
410
|
+
...
|
|
411
|
+
def implicit_cross_section_object_priority(arg0: str) -> int:
|
|
412
|
+
...
|
|
413
|
+
def implicit_model_from_structural_model_scalar_field(arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StructuralModel, arg1: str) -> ImplicitStructuralModel:
|
|
414
|
+
...
|
|
415
|
+
def implicit_section_from_cross_section_scalar_field(arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.CrossSection, arg1: str) -> ImplicitCrossSection:
|
|
416
|
+
...
|
|
417
|
+
def implicit_structural_model_additional_files(arg0: str) -> opengeode.bin.opengeode_py_basic.AdditionalFiles:
|
|
418
|
+
...
|
|
419
|
+
def implicit_structural_model_object_priority(arg0: str) -> int:
|
|
420
|
+
...
|
|
421
|
+
def is_horizons_stack_loadable2D(arg0: str) -> opengeode.bin.opengeode_py_basic.Percentage:
|
|
422
|
+
...
|
|
423
|
+
def is_horizons_stack_loadable3D(arg0: str) -> opengeode.bin.opengeode_py_basic.Percentage:
|
|
424
|
+
...
|
|
425
|
+
def is_implicit_cross_section_loadable(arg0: str) -> opengeode.bin.opengeode_py_basic.Percentage:
|
|
426
|
+
...
|
|
427
|
+
def is_implicit_cross_section_saveable(arg0: ImplicitCrossSection, arg1: str) -> bool:
|
|
428
|
+
...
|
|
429
|
+
def is_implicit_structural_model_loadable(arg0: str) -> opengeode.bin.opengeode_py_basic.Percentage:
|
|
430
|
+
...
|
|
431
|
+
def is_implicit_structural_model_saveable(arg0: ImplicitStructuralModel, arg1: str) -> bool:
|
|
432
|
+
...
|
|
433
|
+
def is_stratigraphic_model_loadable(arg0: str) -> opengeode.bin.opengeode_py_basic.Percentage:
|
|
434
|
+
...
|
|
435
|
+
def is_stratigraphic_model_saveable(arg0: StratigraphicModel, arg1: str) -> bool:
|
|
436
|
+
...
|
|
437
|
+
def is_stratigraphic_section_loadable(arg0: str) -> opengeode.bin.opengeode_py_basic.Percentage:
|
|
438
|
+
...
|
|
439
|
+
def is_stratigraphic_section_saveable(arg0: StratigraphicSection, arg1: str) -> bool:
|
|
440
|
+
...
|
|
441
|
+
def load_horizons_stack2D(arg0: str) -> HorizonsStack2D:
|
|
442
|
+
...
|
|
443
|
+
def load_horizons_stack3D(arg0: str) -> HorizonsStack3D:
|
|
444
|
+
...
|
|
445
|
+
def load_implicit_cross_section(arg0: str) -> ImplicitCrossSection:
|
|
446
|
+
...
|
|
447
|
+
def load_implicit_structural_model(arg0: str) -> ImplicitStructuralModel:
|
|
448
|
+
...
|
|
449
|
+
def load_stratigraphic_model(arg0: str) -> StratigraphicModel:
|
|
450
|
+
...
|
|
451
|
+
def load_stratigraphic_section(arg0: str) -> StratigraphicSection:
|
|
452
|
+
...
|
|
453
|
+
def repair_horizon_stack_if_possible_2d(arg0: HorizonsStack2D, arg1: HorizonsStackBuilder2D) -> None:
|
|
454
|
+
...
|
|
455
|
+
def repair_horizon_stack_if_possible_3d(arg0: HorizonsStack3D, arg1: HorizonsStackBuilder3D) -> None:
|
|
456
|
+
...
|
|
457
|
+
def rescale_model_implicit_value(arg0: ImplicitStructuralModel, arg1: float) -> None:
|
|
458
|
+
...
|
|
459
|
+
def rescale_model_implicit_value_to_bbox_scale(arg0: StratigraphicModel) -> None:
|
|
460
|
+
...
|
|
461
|
+
def rescale_section_implicit_value(arg0: ImplicitCrossSection, arg1: float) -> None:
|
|
462
|
+
...
|
|
463
|
+
def rescale_section_implicit_value_to_bbox_scale(arg0: StratigraphicSection) -> None:
|
|
464
|
+
...
|
|
465
|
+
def save_horizons_stack2D(arg0: HorizonsStack2D, arg1: str) -> list[str]:
|
|
466
|
+
...
|
|
467
|
+
def save_horizons_stack3D(arg0: HorizonsStack3D, arg1: str) -> list[str]:
|
|
468
|
+
...
|
|
469
|
+
def save_implicit_cross_section(arg0: ImplicitCrossSection, arg1: str) -> list[str]:
|
|
470
|
+
...
|
|
471
|
+
def save_implicit_structural_model(arg0: ImplicitStructuralModel, arg1: str) -> list[str]:
|
|
472
|
+
...
|
|
473
|
+
def save_stratigraphic_blocks(arg0: StratigraphicModel, arg1: str) -> None:
|
|
474
|
+
...
|
|
475
|
+
def save_stratigraphic_model(arg0: StratigraphicModel, arg1: str) -> list[str]:
|
|
476
|
+
...
|
|
477
|
+
def save_stratigraphic_section(arg0: StratigraphicSection, arg1: str) -> list[str]:
|
|
478
|
+
...
|
|
479
|
+
def save_stratigraphic_surfaces(arg0: StratigraphicSection, arg1: str) -> None:
|
|
480
|
+
...
|
|
481
|
+
def stratigraphic_model_additional_files(arg0: str) -> opengeode.bin.opengeode_py_basic.AdditionalFiles:
|
|
482
|
+
...
|
|
483
|
+
def stratigraphic_model_from_implicit_model_and_coords(arg0: ImplicitStructuralModel, arg1: int) -> StratigraphicModel:
|
|
484
|
+
...
|
|
485
|
+
def stratigraphic_model_object_priority(arg0: str) -> int:
|
|
486
|
+
...
|
|
487
|
+
def stratigraphic_section_additional_files(arg0: str) -> opengeode.bin.opengeode_py_basic.AdditionalFiles:
|
|
488
|
+
...
|
|
489
|
+
def stratigraphic_section_object_priority(arg0: str) -> int:
|
|
490
|
+
...
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Copyright (c) 2019 - 2025 Geode-solutions
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
# furnished to do so, subject to the following conditions:
|
|
9
|
+
#
|
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
|
11
|
+
# all copies or substantial portions of the Software.
|
|
12
|
+
#
|
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
# SOFTWARE.
|
|
20
|
+
|
|
21
|
+
import opengeode
|
|
22
|
+
|
|
23
|
+
from .bin.opengeode_geosciences_py_explicit import *
|
|
24
|
+
|
|
25
|
+
GeosciencesExplicitLibrary.initialize()
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
import opengeode as opengeode
|
|
3
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import CrossSection
|
|
4
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import CrossSectionBuilder
|
|
5
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import CrossSectionInputFactory
|
|
6
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import CrossSectionOutputFactory
|
|
7
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import Fault2D
|
|
8
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import Fault3D
|
|
9
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import FaultBlock2D
|
|
10
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import FaultBlock3D
|
|
11
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import FaultBlocks2D
|
|
12
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import FaultBlocks3D
|
|
13
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import FaultBlocksBuilder2D
|
|
14
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import FaultBlocksBuilder3D
|
|
15
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import Faults2D
|
|
16
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import Faults3D
|
|
17
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import FaultsBuilder2D
|
|
18
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import FaultsBuilder3D
|
|
19
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import GeographicCoordinateSystem2D
|
|
20
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import GeographicCoordinateSystem3D
|
|
21
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import GeographicCoordinateSystemInfo2D
|
|
22
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import GeographicCoordinateSystemInfo3D
|
|
23
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import GeosciencesExplicitLibrary
|
|
24
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import Horizon2D
|
|
25
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import Horizon3D
|
|
26
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import Horizons2D
|
|
27
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import Horizons3D
|
|
28
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import HorizonsBuilder2D
|
|
29
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import HorizonsBuilder3D
|
|
30
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import StratigraphicUnit2D
|
|
31
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import StratigraphicUnit3D
|
|
32
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import StratigraphicUnits2D
|
|
33
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import StratigraphicUnits3D
|
|
34
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import StratigraphicUnitsBuilder2D
|
|
35
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import StratigraphicUnitsBuilder3D
|
|
36
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import StructuralModel
|
|
37
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import StructuralModelBuilder
|
|
38
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import StructuralModelInputFactory
|
|
39
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import StructuralModelOutputFactory
|
|
40
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import assign_brep_geographic_coordinate_system_info
|
|
41
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import assign_edged_curve_geographic_coordinate_system_info2D
|
|
42
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import assign_edged_curve_geographic_coordinate_system_info3D
|
|
43
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import assign_point_set_geographic_coordinate_system_info2D
|
|
44
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import assign_point_set_geographic_coordinate_system_info3D
|
|
45
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import assign_section_geographic_coordinate_system_info
|
|
46
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import assign_solid_mesh_geographic_coordinate_system_info3D
|
|
47
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import assign_surface_mesh_geographic_coordinate_system_info2D
|
|
48
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import assign_surface_mesh_geographic_coordinate_system_info3D
|
|
49
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import convert_brep_coordinate_reference_system
|
|
50
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import convert_edged_curve_coordinate_reference_system2D
|
|
51
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import convert_edged_curve_coordinate_reference_system3D
|
|
52
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import convert_point_set_coordinate_reference_system2D
|
|
53
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import convert_point_set_coordinate_reference_system3D
|
|
54
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import convert_section_coordinate_reference_system
|
|
55
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import convert_solid_mesh_coordinate_reference_system3D
|
|
56
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import convert_surface_mesh_coordinate_reference_system2D
|
|
57
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import convert_surface_mesh_coordinate_reference_system3D
|
|
58
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import cross_section_additional_files
|
|
59
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import cross_section_object_priority
|
|
60
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import is_cross_section_loadable
|
|
61
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import is_cross_section_saveable
|
|
62
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import is_structural_model_loadable
|
|
63
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import is_structural_model_saveable
|
|
64
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import load_cross_section
|
|
65
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import load_structural_model
|
|
66
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import save_cross_section
|
|
67
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import save_structural_model
|
|
68
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import structural_model_additional_files
|
|
69
|
+
from opengeode_geosciences.bin.opengeode_geosciences_py_explicit import structural_model_object_priority
|
|
70
|
+
__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', 'opengeode', 'save_cross_section', 'save_structural_model', 'structural_model_additional_files', 'structural_model_object_priority']
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Copyright (c) 2019 - 2025 Geode-solutions
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
# in the Software without restriction, including without limitation the rights
|
|
6
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
# furnished to do so, subject to the following conditions:
|
|
9
|
+
#
|
|
10
|
+
# The above copyright notice and this permission notice shall be included in
|
|
11
|
+
# all copies or substantial portions of the Software.
|
|
12
|
+
#
|
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
# SOFTWARE.
|
|
20
|
+
|
|
21
|
+
import opengeode
|
|
22
|
+
|
|
23
|
+
from .bin.opengeode_geosciences_py_implicit import *
|
|
24
|
+
|
|
25
|
+
GeosciencesImplicitLibrary.initialize()
|