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.

Files changed (56) hide show
  1. LoopStructural/datatypes/_bounding_box.py +19 -4
  2. LoopStructural/datatypes/_point.py +31 -0
  3. LoopStructural/datatypes/_structured_grid.py +17 -0
  4. LoopStructural/datatypes/_surface.py +17 -0
  5. LoopStructural/export/omf_wrapper.py +49 -21
  6. LoopStructural/interpolators/__init__.py +13 -0
  7. LoopStructural/interpolators/_api.py +81 -13
  8. LoopStructural/interpolators/_discrete_fold_interpolator.py +11 -4
  9. LoopStructural/interpolators/_discrete_interpolator.py +100 -53
  10. LoopStructural/interpolators/_finite_difference_interpolator.py +68 -78
  11. LoopStructural/interpolators/_geological_interpolator.py +27 -10
  12. LoopStructural/interpolators/_p1interpolator.py +3 -3
  13. LoopStructural/interpolators/_surfe_wrapper.py +42 -12
  14. LoopStructural/interpolators/supports/_2d_base_unstructured.py +16 -0
  15. LoopStructural/interpolators/supports/_2d_structured_grid.py +44 -9
  16. LoopStructural/interpolators/supports/_3d_base_structured.py +24 -7
  17. LoopStructural/interpolators/supports/_3d_structured_grid.py +38 -9
  18. LoopStructural/interpolators/supports/_3d_structured_tetra.py +7 -3
  19. LoopStructural/interpolators/supports/_3d_unstructured_tetra.py +8 -2
  20. LoopStructural/interpolators/supports/__init__.py +7 -0
  21. LoopStructural/interpolators/supports/_base_support.py +7 -0
  22. LoopStructural/modelling/__init__.py +1 -1
  23. LoopStructural/modelling/core/geological_model.py +0 -2
  24. LoopStructural/modelling/features/_analytical_feature.py +25 -16
  25. LoopStructural/modelling/features/_geological_feature.py +47 -11
  26. LoopStructural/modelling/features/builders/_base_builder.py +8 -0
  27. LoopStructural/modelling/features/builders/_folded_feature_builder.py +45 -14
  28. LoopStructural/modelling/features/builders/_geological_feature_builder.py +29 -13
  29. LoopStructural/modelling/features/builders/_structural_frame_builder.py +5 -0
  30. LoopStructural/modelling/features/fault/__init__.py +1 -1
  31. LoopStructural/modelling/features/fault/_fault_function.py +19 -1
  32. LoopStructural/modelling/features/fault/_fault_segment.py +15 -49
  33. LoopStructural/modelling/features/fold/__init__.py +1 -2
  34. LoopStructural/modelling/features/fold/_fold_rotation_angle_feature.py +0 -23
  35. LoopStructural/modelling/features/fold/_foldframe.py +4 -4
  36. LoopStructural/modelling/features/fold/_svariogram.py +81 -46
  37. LoopStructural/modelling/features/fold/fold_function/__init__.py +27 -0
  38. LoopStructural/modelling/features/fold/fold_function/_base_fold_rotation_angle.py +253 -0
  39. LoopStructural/modelling/features/fold/fold_function/_fourier_series_fold_rotation_angle.py +153 -0
  40. LoopStructural/modelling/features/fold/fold_function/_lambda_fold_rotation_angle.py +46 -0
  41. LoopStructural/modelling/features/fold/fold_function/_trigo_fold_rotation_angle.py +151 -0
  42. LoopStructural/modelling/input/process_data.py +6 -0
  43. LoopStructural/modelling/input/project_file.py +24 -3
  44. LoopStructural/utils/_surface.py +6 -3
  45. LoopStructural/utils/colours.py +26 -0
  46. LoopStructural/utils/features.py +5 -0
  47. LoopStructural/utils/maths.py +53 -1
  48. LoopStructural/version.py +1 -1
  49. LoopStructural-1.6.3.dist-info/METADATA +146 -0
  50. {LoopStructural-1.6.1.dist-info → LoopStructural-1.6.3.dist-info}/RECORD +53 -48
  51. {LoopStructural-1.6.1.dist-info → LoopStructural-1.6.3.dist-info}/WHEEL +1 -1
  52. LoopStructural/interpolators/_non_linear_discrete_interpolator.py +0 -0
  53. LoopStructural/modelling/features/fold/_fold_rotation_angle.py +0 -149
  54. LoopStructural-1.6.1.dist-info/METADATA +0 -81
  55. {LoopStructural-1.6.1.dist-info → LoopStructural-1.6.3.dist-info}/LICENSE +0 -0
  56. {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
- ![3D model of Hamersley created using loopstructural](docs/source/images/image823.png)
50
- ![Continuous integration and deployment](https://github.com/Loop3D/LoopStructural/workflows/Continuous%20integration%20and%20deployment/badge.svg)
51
- ![Publish Docker Hub](https://github.com/Loop3D/LoopStructural/workflows/Publish%20Docker%20Hub/badge.svg)
52
- [![PyPI version](https://badge.fury.io/py/LoopStructural.svg)](https://badge.fury.io/py/LoopStructural)
53
- [![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/Loop3D/LoopStructural/blob/master/LICENSE)
54
- [![Documentation loop3d.github.io/LoopStructural/](https://img.shields.io/badge/docs-githubio-brightgreen)](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.*