LoopStructural 1.6.1__py3-none-any.whl → 1.6.3__py3-none-any.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 LoopStructural might be problematic. Click here for more details.
- LoopStructural/datatypes/_bounding_box.py +19 -4
- LoopStructural/datatypes/_point.py +31 -0
- LoopStructural/datatypes/_structured_grid.py +17 -0
- LoopStructural/datatypes/_surface.py +17 -0
- LoopStructural/export/omf_wrapper.py +49 -21
- LoopStructural/interpolators/__init__.py +13 -0
- LoopStructural/interpolators/_api.py +81 -13
- LoopStructural/interpolators/_discrete_fold_interpolator.py +11 -4
- LoopStructural/interpolators/_discrete_interpolator.py +100 -53
- LoopStructural/interpolators/_finite_difference_interpolator.py +68 -78
- LoopStructural/interpolators/_geological_interpolator.py +27 -10
- LoopStructural/interpolators/_p1interpolator.py +3 -3
- LoopStructural/interpolators/_surfe_wrapper.py +42 -12
- LoopStructural/interpolators/supports/_2d_base_unstructured.py +16 -0
- LoopStructural/interpolators/supports/_2d_structured_grid.py +44 -9
- LoopStructural/interpolators/supports/_3d_base_structured.py +24 -7
- LoopStructural/interpolators/supports/_3d_structured_grid.py +38 -9
- LoopStructural/interpolators/supports/_3d_structured_tetra.py +7 -3
- LoopStructural/interpolators/supports/_3d_unstructured_tetra.py +8 -2
- LoopStructural/interpolators/supports/__init__.py +7 -0
- LoopStructural/interpolators/supports/_base_support.py +7 -0
- LoopStructural/modelling/__init__.py +1 -1
- LoopStructural/modelling/core/geological_model.py +0 -2
- LoopStructural/modelling/features/_analytical_feature.py +25 -16
- LoopStructural/modelling/features/_geological_feature.py +47 -11
- LoopStructural/modelling/features/builders/_base_builder.py +8 -0
- LoopStructural/modelling/features/builders/_folded_feature_builder.py +45 -14
- LoopStructural/modelling/features/builders/_geological_feature_builder.py +29 -13
- LoopStructural/modelling/features/builders/_structural_frame_builder.py +5 -0
- LoopStructural/modelling/features/fault/__init__.py +1 -1
- LoopStructural/modelling/features/fault/_fault_function.py +19 -1
- LoopStructural/modelling/features/fault/_fault_segment.py +15 -49
- LoopStructural/modelling/features/fold/__init__.py +1 -2
- LoopStructural/modelling/features/fold/_fold_rotation_angle_feature.py +0 -23
- LoopStructural/modelling/features/fold/_foldframe.py +4 -4
- LoopStructural/modelling/features/fold/_svariogram.py +81 -46
- LoopStructural/modelling/features/fold/fold_function/__init__.py +27 -0
- LoopStructural/modelling/features/fold/fold_function/_base_fold_rotation_angle.py +253 -0
- LoopStructural/modelling/features/fold/fold_function/_fourier_series_fold_rotation_angle.py +153 -0
- LoopStructural/modelling/features/fold/fold_function/_lambda_fold_rotation_angle.py +46 -0
- LoopStructural/modelling/features/fold/fold_function/_trigo_fold_rotation_angle.py +151 -0
- LoopStructural/modelling/input/process_data.py +6 -0
- LoopStructural/modelling/input/project_file.py +24 -3
- LoopStructural/utils/_surface.py +6 -3
- LoopStructural/utils/colours.py +26 -0
- LoopStructural/utils/features.py +5 -0
- LoopStructural/utils/maths.py +53 -1
- LoopStructural/version.py +1 -1
- LoopStructural-1.6.3.dist-info/METADATA +146 -0
- {LoopStructural-1.6.1.dist-info → LoopStructural-1.6.3.dist-info}/RECORD +53 -48
- {LoopStructural-1.6.1.dist-info → LoopStructural-1.6.3.dist-info}/WHEEL +1 -1
- LoopStructural/interpolators/_non_linear_discrete_interpolator.py +0 -0
- LoopStructural/modelling/features/fold/_fold_rotation_angle.py +0 -149
- LoopStructural-1.6.1.dist-info/METADATA +0 -81
- {LoopStructural-1.6.1.dist-info → LoopStructural-1.6.3.dist-info}/LICENSE +0 -0
- {LoopStructural-1.6.1.dist-info → LoopStructural-1.6.3.dist-info}/top_level.txt +0 -0
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: LoopStructural
|
|
3
|
-
Version: 1.6.1
|
|
4
|
-
Summary: 3D geological modelling
|
|
5
|
-
Author-email: Lachlan Grose <lachlan.grose@monash.edu>
|
|
6
|
-
License: MIT
|
|
7
|
-
Project-URL: Documentation, https://Loop3d.org/LoopStructural/
|
|
8
|
-
Project-URL: Bug Tracker, https://github.com/loop3d/loopstructural/issues
|
|
9
|
-
Project-URL: Source Code, https://github.com/loop3d/loopstructural
|
|
10
|
-
Keywords: earth sciences,geology,3-D modelling,structural geology,uncertainty
|
|
11
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
-
Classifier: Intended Audience :: Science/Research
|
|
13
|
-
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
14
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
-
Classifier: Operating System :: Microsoft :: Windows
|
|
16
|
-
Classifier: Operating System :: POSIX
|
|
17
|
-
Classifier: Operating System :: MacOS
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
-
Requires-Python: >=3.8
|
|
24
|
-
Description-Content-Type: text/markdown
|
|
25
|
-
License-File: LICENSE
|
|
26
|
-
Requires-Dist: numpy >=1.18
|
|
27
|
-
Requires-Dist: pandas
|
|
28
|
-
Requires-Dist: scipy
|
|
29
|
-
Requires-Dist: scikit-image
|
|
30
|
-
Requires-Dist: scikit-learn
|
|
31
|
-
Requires-Dist: tqdm
|
|
32
|
-
Provides-Extra: all
|
|
33
|
-
Requires-Dist: loopstructural[export,inequalities,visualisation] ; extra == 'all'
|
|
34
|
-
Provides-Extra: export
|
|
35
|
-
Requires-Dist: geoh5py ; extra == 'export'
|
|
36
|
-
Requires-Dist: pyevtk ; extra == 'export'
|
|
37
|
-
Requires-Dist: dill ; extra == 'export'
|
|
38
|
-
Provides-Extra: inequalities
|
|
39
|
-
Requires-Dist: loopsolver ; extra == 'inequalities'
|
|
40
|
-
Provides-Extra: jupyter
|
|
41
|
-
Requires-Dist: pyvista[all] ; extra == 'jupyter'
|
|
42
|
-
Requires-Dist: tqdm ; extra == 'jupyter'
|
|
43
|
-
Provides-Extra: visualisation
|
|
44
|
-
Requires-Dist: matplotlib ; extra == 'visualisation'
|
|
45
|
-
Requires-Dist: pyvista ; extra == 'visualisation'
|
|
46
|
-
Requires-Dist: loopstructuralviusualisation >0.1.4 ; extra == 'visualisation'
|
|
47
|
-
|
|
48
|
-
# LoopStructural: Loop3D Geological Forward Modeling Engine.
|
|
49
|
-

|
|
50
|
-

|
|
51
|
-

|
|
52
|
-
[](https://badge.fury.io/py/LoopStructural)
|
|
53
|
-
[](https://github.com/Loop3D/LoopStructural/blob/master/LICENSE)
|
|
54
|
-
[](https://loop3d.github.io/LoopStructural)
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
LoopStructural is the 3D geological modelling library for Loop ([Loop3d.org](https://loop3d.org/)). The development of LoopStructural is lead by **Lachlan Grose** as an ARC (LP170100985) post-doc at Monash University. **Laurent Ailleres** and **Gautier Laurent** have made significant contributions to the conceptual design and integration of geological concepts into the geological modelling workflow. **Roy Thomson** and **Yohan de Rose** have contributed to the implementation and integration of LoopStructural into the Loop workflow.
|
|
58
|
-
|
|
59
|
-
Loop is led by Laurent Ailleres (Monash University) with a team of Work Package leaders from:
|
|
60
|
-
* Monash University: Roy Thomson, Lachlan Grose and Robin Armit
|
|
61
|
-
* University of Western Australia: Mark Jessell, Jeremie Giraud, Mark Lindsay and Guillaume Pirot
|
|
62
|
-
* Geological Survey of Canada: Boyan Brodaric and Eric de Kemp
|
|
63
|
-
|
|
64
|
-
The project benefits from in-kind contributions from the Geological Survey of Canada, the British Geological Survey, the French Bureau de Recherches Geologiques et Minieres, the RING group at the Universite de Lorraine, the RWTH in Aachen, Germany and AUSCOPE
|
|
65
|
-
|
|
66
|
-
* Python/cython implementation of a Discrete interpolatiors
|
|
67
|
-
* Fold interpolation using constraints outlined in Laurent 2016 with fold geostatistical tools shown in Grose et al., 2017
|
|
68
|
-
* Fault interpolation
|
|
69
|
-
|
|
70
|
-
If you want to use LoopStructural the easiest way to get started is to use a docker container and a jupyter notebook environment
|
|
71
|
-
|
|
72
|
-
1. Pull the loopstructural docker image `docker pull lachlangrose/loopstructural`
|
|
73
|
-
2. Start a docker container `docker run -it -p 8888:8888 lachlangrose/loopstructural`
|
|
74
|
-
|
|
75
|
-
## Documentation
|
|
76
|
-
The LoopStructural documentation can be found [here](https://loop3d.github.io/LoopStructural)
|
|
77
|
-
## Problems
|
|
78
|
-
Any bugs/feature requests/comments please create a new [issue](https://github.com/Loop3D/LoopStructural/issues).
|
|
79
|
-
|
|
80
|
-
## Acknowledgements
|
|
81
|
-
*The Loop platform is an open source 3D probabilistic geological and geophysical modelling platform, initiated by Geoscience Australia and the OneGeology consortium. The project is funded by Australian territory, State and Federal Geological Surveys, the Australian Research Council and the MinEx Collaborative Research Centre.*
|
|
File without changes
|
|
File without changes
|