OpenGeode-Inspector-Geosciences 1.0.0__cp313-cp313-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.
@@ -0,0 +1,6 @@
1
+ ## Copyright (c) 2019 - 2026 Geode-solutions
2
+
3
+ import os, pathlib
4
+ os.add_dll_directory(pathlib.Path(__file__).parent.resolve().joinpath('bin'))
5
+
6
+ from .geosciences_inspection import *
@@ -0,0 +1,17 @@
1
+ from __future__ import annotations
2
+ import opengeode as opengeode
3
+ import opengeode_geosciences as opengeode_geosciences
4
+ import opengeode_inspector as opengeode_inspector
5
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import InspectionIssuesComponentID
6
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import OpenGeodeInspectorGeosciencesInspectionLibrary
7
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import StructuralModelGeologyInspectionResult
8
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import StructuralModelGeologyInspector
9
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import StructuralModelInspectionResult
10
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import StructuralModelInspector
11
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import inspect_structural_model
12
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import inspect_structural_model_geology
13
+ import os as os
14
+ import pathlib as pathlib
15
+ from . import bin
16
+ from . import geosciences_inspection
17
+ __all__: list[str] = ['InspectionIssuesComponentID', 'OpenGeodeInspectorGeosciencesInspectionLibrary', 'StructuralModelGeologyInspectionResult', 'StructuralModelGeologyInspector', 'StructuralModelInspectionResult', 'StructuralModelInspector', 'bin', 'geosciences_inspection', 'inspect_structural_model', 'inspect_structural_model_geology', 'opengeode', 'opengeode_geosciences', 'opengeode_inspector', 'os', 'pathlib']
@@ -0,0 +1,3 @@
1
+ from __future__ import annotations
2
+ from . import opengeode_inspector_geosciences_py_inspection
3
+ __all__: list[str] = ['opengeode_inspector_geosciences_py_inspection']
@@ -0,0 +1,57 @@
1
+ """
2
+ OpenGeode-Inspector_Geosciences Python binding for model
3
+ """
4
+ from __future__ import annotations
5
+ import opengeode_geosciences.bin.opengeode_geosciences_py_explicit
6
+ import opengeode_inspector.bin.opengeode_inspector_py_inspection
7
+ __all__: list[str] = ['InspectionIssuesComponentID', 'OpenGeodeInspectorGeosciencesInspectionLibrary', 'StructuralModelGeologyInspectionResult', 'StructuralModelGeologyInspector', 'StructuralModelInspectionResult', 'StructuralModelInspector', 'inspect_structural_model', 'inspect_structural_model_geology']
8
+ class InspectionIssuesComponentID:
9
+ def description(self) -> str:
10
+ ...
11
+ def nb_issues(self) -> int:
12
+ ...
13
+ def set_description(self, arg0: str) -> None:
14
+ ...
15
+ def string(self) -> str:
16
+ ...
17
+ class OpenGeodeInspectorGeosciencesInspectionLibrary:
18
+ @staticmethod
19
+ def initialize() -> None:
20
+ ...
21
+ class StructuralModelGeologyInspectionResult:
22
+ components_not_part_of_geology: InspectionIssuesComponentID
23
+ empty_geological_components: InspectionIssuesComponentID
24
+ invalid_horizons: opengeode_inspector.bin.opengeode_inspector_py_inspection.InspectionIssuesUUID
25
+ def __init__(self) -> None:
26
+ ...
27
+ def inspection_type(self) -> str:
28
+ ...
29
+ def nb_issues(self) -> int:
30
+ ...
31
+ def string(self) -> str:
32
+ ...
33
+ class StructuralModelGeologyInspector:
34
+ def __init__(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StructuralModel) -> None:
35
+ ...
36
+ def inspect_structural_model_geology(self) -> StructuralModelGeologyInspectionResult:
37
+ ...
38
+ class StructuralModelInspectionResult:
39
+ brep: opengeode_inspector.bin.opengeode_inspector_py_inspection.BRepInspectionResult
40
+ geology: StructuralModelGeologyInspectionResult
41
+ def __init__(self) -> None:
42
+ ...
43
+ def inspection_type(self) -> str:
44
+ ...
45
+ def nb_issues(self) -> int:
46
+ ...
47
+ def string(self) -> str:
48
+ ...
49
+ class StructuralModelInspector(opengeode_inspector.bin.opengeode_inspector_py_inspection.BRepInspector, StructuralModelGeologyInspector):
50
+ def __init__(self, arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StructuralModel) -> None:
51
+ ...
52
+ def inspect_structural_model(self) -> StructuralModelInspectionResult:
53
+ ...
54
+ def inspect_structural_model(arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StructuralModel) -> StructuralModelInspectionResult:
55
+ ...
56
+ def inspect_structural_model_geology(arg0: opengeode_geosciences.bin.opengeode_geosciences_py_explicit.StructuralModel) -> StructuralModelGeologyInspectionResult:
57
+ ...
@@ -0,0 +1,10 @@
1
+ #
2
+ # Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved.
3
+ #
4
+
5
+ import opengeode
6
+ import opengeode_geosciences
7
+ import opengeode_inspector
8
+
9
+ from .bin.opengeode_inspector_geosciences_py_inspection import *
10
+ OpenGeodeInspectorGeosciencesInspectionLibrary.initialize()
@@ -0,0 +1,13 @@
1
+ from __future__ import annotations
2
+ import opengeode as opengeode
3
+ import opengeode_geosciences as opengeode_geosciences
4
+ import opengeode_inspector as opengeode_inspector
5
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import InspectionIssuesComponentID
6
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import OpenGeodeInspectorGeosciencesInspectionLibrary
7
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import StructuralModelGeologyInspectionResult
8
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import StructuralModelGeologyInspector
9
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import StructuralModelInspectionResult
10
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import StructuralModelInspector
11
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import inspect_structural_model
12
+ from opengeode_inspector_geosciences.bin.opengeode_inspector_geosciences_py_inspection import inspect_structural_model_geology
13
+ __all__: list[str] = ['InspectionIssuesComponentID', 'OpenGeodeInspectorGeosciencesInspectionLibrary', 'StructuralModelGeologyInspectionResult', 'StructuralModelGeologyInspector', 'StructuralModelInspectionResult', 'StructuralModelInspector', 'inspect_structural_model', 'inspect_structural_model_geology', 'opengeode', 'opengeode_geosciences', 'opengeode_inspector']
File without changes
@@ -0,0 +1,82 @@
1
+ Metadata-Version: 2.4
2
+ Name: OpenGeode-Inspector_Geosciences
3
+ Version: 1.0.0
4
+ Summary: Open source inspector for Geosciences objects
5
+ Author-email: Geode-solutions <contact@geode-solutions.com>
6
+ License: MIT
7
+ Requires-Python: <3.15,>=3.10
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: opengeode-core==17.*,>=17.3.5
10
+ Requires-Dist: opengeode-geosciences==9.*,>=9.6.0
11
+ Requires-Dist: opengeode-inspector==6.*,>=6.11.3
12
+
13
+ <h1 align="center">OpenGeode-Inspector_Geosciences<sup><i>by Geode-solutions</i></sup></h1>
14
+ <h3 align="center">OpenGeode module for inspecting meshes and models</h3>
15
+
16
+ <p align="center">
17
+ <img src="https://github.com/Geode-solutions/OpenGeode-Inspector_Geosciences/actions/workflows/schedule.yml/badge.svg" alt="Build Status">
18
+ <img src="https://github.com/Geode-solutions/OpenGeode-Inspector_Geosciences/actions/workflows/deploy.yml/badge.svg" alt="Deploy Status">
19
+ <img src="https://img.shields.io/github/release/Geode-solutions/OpenGeode-Inspector_Geosciences.svg" alt="Version">
20
+ <img src="https://img.shields.io/pypi/v/opengeode-inspector-geosciences" alt="PyPI" >
21
+ </p>
22
+
23
+ <p align="center">
24
+ <img src="https://img.shields.io/static/v1?label=Windows&logo=windows&logoColor=white&message=support&color=success" alt="Windows support">
25
+ <img src="https://img.shields.io/static/v1?label=Ubuntu&logo=Ubuntu&logoColor=white&message=support&color=success" alt="Ubuntu support">
26
+ <img src="https://img.shields.io/static/v1?label=Red%20Hat&logo=Red-Hat&logoColor=white&message=support&color=success" alt="Red Hat support">
27
+ </p>
28
+
29
+ <p align="center">
30
+ <img src="https://img.shields.io/badge/C%2B%2B-17-blue.svg" alt="Language">
31
+ <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License">
32
+ <img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
33
+ </p>
34
+
35
+ <p align="center">
36
+ <a href="https://geode-solutions.com/#slack">
37
+ <img src="https://img.icons8.com/?size=20&id=kikR2jIn6485&format=png&color=000000" alt="Slack invite">
38
+ </a>
39
+ <a href="https://www.linkedin.com/company/geode-solutions">
40
+ <img src="https://img.icons8.com/?size=25&id=13930&format=png&color=000000" alt="Linkedin">
41
+ </a>
42
+ <a href="mailto:contact@geode-solutions.com">
43
+ <img src="https://img.icons8.com/?size=24&id=YRRhCXfA0Vd0&format=png&color=999999" alt="Mail Us">
44
+ </a>
45
+ </p>
46
+
47
+ ---
48
+
49
+ ## Introduction
50
+
51
+ OpenGeode-Inspector_Geosciences is a module of [OpenGeode] providing ways of inspecting the geology of your (geological) models and verifying their validity. It follows OpenGeode-Inspector which allows validity checks based on mesh criteria and on the topology.
52
+
53
+ [OpenGeode]: https://github.com/Geode-solutions/OpenGeode
54
+
55
+ ## Documentation
56
+
57
+ Go check out the online documentation at [docs.geode-solutions.com].
58
+
59
+ [docs.geode-solutions.com] https://docs.geode-solutions.com
60
+
61
+ Installing OpenGeode-Inspector_Geosciences is done:
62
+
63
+ - either by compiling the C++ source.
64
+ - or by installing the python library using the pip command `pip install opengeode-inspector-geosciences`.
65
+
66
+ ## Usage
67
+
68
+ To use OpenGeode-Inspector_Geosciences, several options are available:
69
+
70
+ - If you installed and compiled the C++ source code, you can use the executable binaries to apply an inspection of your meshes/models and toggle on/off the various checks directly.
71
+ - or use the API functions (check the tests to see how it is done) if you want to go further or use the resulting errors to repair your meshes/models.
72
+ - If you installed the python library, you can add `import opengeode_inspector` in your Python script to use the available API functions. Check [this documentation page](https://docs.geode-solutions.com/guides/use-opengeode-binding.html) for more details. Examples are also procured in the `examples` folder.
73
+
74
+ ## Questions
75
+
76
+ For questions and support please use the official [slack](https://geode-solutions.com/#slack) and go to the channel #inspector. The issue list of this repo is exclusively for bug reports and feature requests.
77
+
78
+ ## License
79
+
80
+ [MIT](https://opensource.org/licenses/MIT)
81
+
82
+ Copyright (c) 2019 - 2026, Geode-solutions
@@ -0,0 +1,13 @@
1
+ opengeode_inspector_geosciences/__init__.py,sha256=D7LKGkvzE_vYGnFVonjAUvN2p5QZ4nOTayOOcFOZG0E,188
2
+ opengeode_inspector_geosciences/__init__.pyi,sha256=-h1sbgCHSxzHP1SCByj_hL8EV9L5ux6kqNGWMNiaq1o,1714
3
+ opengeode_inspector_geosciences/geosciences_inspection.py,sha256=P1KOhMPhBGDxb6vTwRkPC12VRVOqqN75ipMjXRU12mk,280
4
+ opengeode_inspector_geosciences/geosciences_inspection.pyi,sha256=47tBSmPjC4P4_1JK3chy0M8QAo-PyrNUVXthOhU8O9k,1563
5
+ opengeode_inspector_geosciences/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ opengeode_inspector_geosciences/bin/OpenGeode-Inspector_Geosciences_inspection.dll,sha256=_V9hhzq5zwdFnzQFADqqvPfTGriJzjmRKbPVANSINXs,83456
7
+ opengeode_inspector_geosciences/bin/__init__.pyi,sha256=4v5QYUuvaOAsMufCFFCqJx3QkuCNmWkHXamk-K2RHrk,169
8
+ opengeode_inspector_geosciences/bin/opengeode_inspector_geosciences_py_inspection.cp313-win_amd64.pyd,sha256=b2tmniEXjbhKIJih-zcfCOyR3IYwh6qAUCRDvUQBvH4,228352
9
+ opengeode_inspector_geosciences/bin/opengeode_inspector_geosciences_py_inspection.pyi,sha256=WmHctSKhL5bwZGfXJUz1Su4VlEr_xJnCuH-ZMre5pSs,2695
10
+ opengeode_inspector_geosciences-1.0.0.dist-info/METADATA,sha256=Qs_31EmYQhl9GF9zFk2f52S4sKehA4xKhe8auwKduwc,4184
11
+ opengeode_inspector_geosciences-1.0.0.dist-info/WHEEL,sha256=x5Wpw_tLx5PQKiWdxpqvs0e7Sg-SO0mTWdEADYDGPGA,101
12
+ opengeode_inspector_geosciences-1.0.0.dist-info/top_level.txt,sha256=Z3gxCcn6ByCF1z_m4IYLg17puHzR9LoKLnfouDCulJ8,32
13
+ opengeode_inspector_geosciences-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win_amd64
5
+
@@ -0,0 +1 @@
1
+ opengeode_inspector_geosciences