LoopStructural 1.6.1__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 (129) hide show
  1. LoopStructural/__init__.py +52 -0
  2. LoopStructural/datasets/__init__.py +23 -0
  3. LoopStructural/datasets/_base.py +301 -0
  4. LoopStructural/datasets/_example_models.py +10 -0
  5. LoopStructural/datasets/data/claudius.csv +21049 -0
  6. LoopStructural/datasets/data/claudiusbb.txt +2 -0
  7. LoopStructural/datasets/data/duplex.csv +126 -0
  8. LoopStructural/datasets/data/duplexbb.txt +2 -0
  9. LoopStructural/datasets/data/fault_trace/fault_trace.cpg +1 -0
  10. LoopStructural/datasets/data/fault_trace/fault_trace.dbf +0 -0
  11. LoopStructural/datasets/data/fault_trace/fault_trace.prj +1 -0
  12. LoopStructural/datasets/data/fault_trace/fault_trace.shp +0 -0
  13. LoopStructural/datasets/data/fault_trace/fault_trace.shx +0 -0
  14. LoopStructural/datasets/data/geological_map_data/bbox.csv +2 -0
  15. LoopStructural/datasets/data/geological_map_data/contacts.csv +657 -0
  16. LoopStructural/datasets/data/geological_map_data/fault_displacement.csv +7 -0
  17. LoopStructural/datasets/data/geological_map_data/fault_edges.txt +2 -0
  18. LoopStructural/datasets/data/geological_map_data/fault_locations.csv +79 -0
  19. LoopStructural/datasets/data/geological_map_data/fault_orientations.csv +19 -0
  20. LoopStructural/datasets/data/geological_map_data/stratigraphic_order.csv +13 -0
  21. LoopStructural/datasets/data/geological_map_data/stratigraphic_orientations.csv +207 -0
  22. LoopStructural/datasets/data/geological_map_data/stratigraphic_thickness.csv +13 -0
  23. LoopStructural/datasets/data/intrusion.csv +1017 -0
  24. LoopStructural/datasets/data/intrusionbb.txt +2 -0
  25. LoopStructural/datasets/data/onefoldbb.txt +2 -0
  26. LoopStructural/datasets/data/onefolddata.csv +2226 -0
  27. LoopStructural/datasets/data/refolded_bb.txt +2 -0
  28. LoopStructural/datasets/data/refolded_fold.csv +205 -0
  29. LoopStructural/datasets/data/tabular_intrusion.csv +23 -0
  30. LoopStructural/datatypes/__init__.py +4 -0
  31. LoopStructural/datatypes/_bounding_box.py +422 -0
  32. LoopStructural/datatypes/_point.py +166 -0
  33. LoopStructural/datatypes/_structured_grid.py +94 -0
  34. LoopStructural/datatypes/_surface.py +184 -0
  35. LoopStructural/export/exporters.py +554 -0
  36. LoopStructural/export/file_formats.py +15 -0
  37. LoopStructural/export/geoh5.py +100 -0
  38. LoopStructural/export/gocad.py +126 -0
  39. LoopStructural/export/omf_wrapper.py +88 -0
  40. LoopStructural/interpolators/__init__.py +105 -0
  41. LoopStructural/interpolators/_api.py +143 -0
  42. LoopStructural/interpolators/_builders.py +149 -0
  43. LoopStructural/interpolators/_cython/__init__.py +0 -0
  44. LoopStructural/interpolators/_discrete_fold_interpolator.py +183 -0
  45. LoopStructural/interpolators/_discrete_interpolator.py +692 -0
  46. LoopStructural/interpolators/_finite_difference_interpolator.py +470 -0
  47. LoopStructural/interpolators/_geological_interpolator.py +380 -0
  48. LoopStructural/interpolators/_interpolator_factory.py +89 -0
  49. LoopStructural/interpolators/_non_linear_discrete_interpolator.py +0 -0
  50. LoopStructural/interpolators/_operator.py +38 -0
  51. LoopStructural/interpolators/_p1interpolator.py +228 -0
  52. LoopStructural/interpolators/_p2interpolator.py +277 -0
  53. LoopStructural/interpolators/_surfe_wrapper.py +174 -0
  54. LoopStructural/interpolators/supports/_2d_base_unstructured.py +340 -0
  55. LoopStructural/interpolators/supports/_2d_p1_unstructured.py +68 -0
  56. LoopStructural/interpolators/supports/_2d_p2_unstructured.py +288 -0
  57. LoopStructural/interpolators/supports/_2d_structured_grid.py +462 -0
  58. LoopStructural/interpolators/supports/_2d_structured_tetra.py +0 -0
  59. LoopStructural/interpolators/supports/_3d_base_structured.py +467 -0
  60. LoopStructural/interpolators/supports/_3d_p2_tetra.py +331 -0
  61. LoopStructural/interpolators/supports/_3d_structured_grid.py +470 -0
  62. LoopStructural/interpolators/supports/_3d_structured_tetra.py +746 -0
  63. LoopStructural/interpolators/supports/_3d_unstructured_tetra.py +637 -0
  64. LoopStructural/interpolators/supports/__init__.py +55 -0
  65. LoopStructural/interpolators/supports/_aabb.py +77 -0
  66. LoopStructural/interpolators/supports/_base_support.py +114 -0
  67. LoopStructural/interpolators/supports/_face_table.py +70 -0
  68. LoopStructural/interpolators/supports/_support_factory.py +32 -0
  69. LoopStructural/modelling/__init__.py +29 -0
  70. LoopStructural/modelling/core/__init__.py +0 -0
  71. LoopStructural/modelling/core/geological_model.py +1867 -0
  72. LoopStructural/modelling/features/__init__.py +32 -0
  73. LoopStructural/modelling/features/_analytical_feature.py +79 -0
  74. LoopStructural/modelling/features/_base_geological_feature.py +364 -0
  75. LoopStructural/modelling/features/_cross_product_geological_feature.py +100 -0
  76. LoopStructural/modelling/features/_geological_feature.py +288 -0
  77. LoopStructural/modelling/features/_lambda_geological_feature.py +93 -0
  78. LoopStructural/modelling/features/_region.py +18 -0
  79. LoopStructural/modelling/features/_structural_frame.py +186 -0
  80. LoopStructural/modelling/features/_unconformity_feature.py +83 -0
  81. LoopStructural/modelling/features/builders/__init__.py +5 -0
  82. LoopStructural/modelling/features/builders/_base_builder.py +111 -0
  83. LoopStructural/modelling/features/builders/_fault_builder.py +590 -0
  84. LoopStructural/modelling/features/builders/_folded_feature_builder.py +129 -0
  85. LoopStructural/modelling/features/builders/_geological_feature_builder.py +543 -0
  86. LoopStructural/modelling/features/builders/_structural_frame_builder.py +237 -0
  87. LoopStructural/modelling/features/fault/__init__.py +3 -0
  88. LoopStructural/modelling/features/fault/_fault_function.py +444 -0
  89. LoopStructural/modelling/features/fault/_fault_function_feature.py +82 -0
  90. LoopStructural/modelling/features/fault/_fault_segment.py +505 -0
  91. LoopStructural/modelling/features/fold/__init__.py +9 -0
  92. LoopStructural/modelling/features/fold/_fold.py +167 -0
  93. LoopStructural/modelling/features/fold/_fold_rotation_angle.py +149 -0
  94. LoopStructural/modelling/features/fold/_fold_rotation_angle_feature.py +67 -0
  95. LoopStructural/modelling/features/fold/_foldframe.py +194 -0
  96. LoopStructural/modelling/features/fold/_svariogram.py +188 -0
  97. LoopStructural/modelling/input/__init__.py +2 -0
  98. LoopStructural/modelling/input/fault_network.py +80 -0
  99. LoopStructural/modelling/input/map2loop_processor.py +165 -0
  100. LoopStructural/modelling/input/process_data.py +650 -0
  101. LoopStructural/modelling/input/project_file.py +84 -0
  102. LoopStructural/modelling/intrusions/__init__.py +25 -0
  103. LoopStructural/modelling/intrusions/geom_conceptual_models.py +142 -0
  104. LoopStructural/modelling/intrusions/geometric_scaling_functions.py +123 -0
  105. LoopStructural/modelling/intrusions/intrusion_builder.py +672 -0
  106. LoopStructural/modelling/intrusions/intrusion_feature.py +410 -0
  107. LoopStructural/modelling/intrusions/intrusion_frame_builder.py +971 -0
  108. LoopStructural/modelling/intrusions/intrusion_support_functions.py +460 -0
  109. LoopStructural/utils/__init__.py +38 -0
  110. LoopStructural/utils/_surface.py +143 -0
  111. LoopStructural/utils/_transformation.py +76 -0
  112. LoopStructural/utils/config.py +18 -0
  113. LoopStructural/utils/dtm_creator.py +17 -0
  114. LoopStructural/utils/exceptions.py +31 -0
  115. LoopStructural/utils/helper.py +292 -0
  116. LoopStructural/utils/json_encoder.py +18 -0
  117. LoopStructural/utils/linalg.py +8 -0
  118. LoopStructural/utils/logging.py +79 -0
  119. LoopStructural/utils/maths.py +245 -0
  120. LoopStructural/utils/regions.py +103 -0
  121. LoopStructural/utils/typing.py +7 -0
  122. LoopStructural/utils/utils.py +68 -0
  123. LoopStructural/version.py +1 -0
  124. LoopStructural/visualisation/__init__.py +11 -0
  125. LoopStructural-1.6.1.dist-info/LICENSE +21 -0
  126. LoopStructural-1.6.1.dist-info/METADATA +81 -0
  127. LoopStructural-1.6.1.dist-info/RECORD +129 -0
  128. LoopStructural-1.6.1.dist-info/WHEEL +5 -0
  129. LoopStructural-1.6.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,129 @@
1
+ LoopStructural/__init__.py,sha256=nlJ0csTZ_xlTZrWvTKiTp3ER_XRQN6iqQ5sR94RD5QA,1331
2
+ LoopStructural/version.py,sha256=UB0rz0TMsR0fTvEwewaJTcQXyTNQSEi2_Jkyoms_bss,22
3
+ LoopStructural/datasets/__init__.py,sha256=ylb7fzJU_DyQ73LlwQos7VamqkDSGITbbnoKg7KAOmE,677
4
+ LoopStructural/datasets/_base.py,sha256=FB_D5ybBYHoaNbycdkpZcRffzjrrL1xp9X0k-pyob9Y,7618
5
+ LoopStructural/datasets/_example_models.py,sha256=Zg33IeUyh4C-lC0DRMLqCDP2IrX8L-gNV1WxJwBGjzM,113
6
+ LoopStructural/datasets/data/claudius.csv,sha256=wXLXCJn7An00tRW95QoywGAs5IjEZN9TL5vVDxYEtUU,1347580
7
+ LoopStructural/datasets/data/claudiusbb.txt,sha256=gHy7uqdeJFa9lkDyeGsYCNSmff1sPU1s81FNgpIx-b0,152
8
+ LoopStructural/datasets/data/duplex.csv,sha256=XRQuXFKw9u3TwGnkzom37nbfaY7OvMZ3-OUgSUVELCk,6247
9
+ LoopStructural/datasets/data/duplexbb.txt,sha256=uEIKACf6BGQTCIEAnNdHAjfgEpbPwznNANZX3yDE33Q,153
10
+ LoopStructural/datasets/data/intrusion.csv,sha256=XBPNQy_3HKvo4sOnv3zU2flIn1DLW936pJJKe4up_vI,75639
11
+ LoopStructural/datasets/data/intrusionbb.txt,sha256=k1wHcpBRsLW113u8mQgrjacmtTZXMeAC2KTZ-V_S8Bc,151
12
+ LoopStructural/datasets/data/onefoldbb.txt,sha256=leypPRQjGVmx1wtyEM-wersk9TKO9zCBVvho-DL5u-c,150
13
+ LoopStructural/datasets/data/onefolddata.csv,sha256=1zAFUptCJEQgcc4BLQkqx8hfEsaFdjJrbs8wKN8ebC4,162325
14
+ LoopStructural/datasets/data/refolded_bb.txt,sha256=LDUgTMQ_O-EpeEyYun5EXBV4J7KqKc3QDMGaO4g4w-0,150
15
+ LoopStructural/datasets/data/refolded_fold.csv,sha256=AmeBGhm8J3HZJPb8izTssHSCugFuA6KmlAnjuImK1hY,14282
16
+ LoopStructural/datasets/data/tabular_intrusion.csv,sha256=TMAxP8ZoyPjuiMMjX625abtUIH8ys-86fW2uu7Y-75E,1170
17
+ LoopStructural/datasets/data/fault_trace/fault_trace.cpg,sha256=OtMDH1UDpEBK-CUmLugjLMBNTqZoPULF3QovKiesmCQ,5
18
+ LoopStructural/datasets/data/fault_trace/fault_trace.dbf,sha256=UC768f_GSciFq2a6ww-QOmRy2J0-E3dP0FtE1zWVNEE,280
19
+ LoopStructural/datasets/data/fault_trace/fault_trace.prj,sha256=-x33Oc8QEHmcd4cohx-2AyftYIiEJVnrHTy0nhh6PlM,403
20
+ LoopStructural/datasets/data/fault_trace/fault_trace.shp,sha256=l6lifvIbAfqPq9011v98gioz3LnXyG11Xh9lN6NiCnQ,708
21
+ LoopStructural/datasets/data/fault_trace/fault_trace.shx,sha256=7keR3DPiJkIhp0FND-wSFYYaL1iQBgmcv6ZfDRVNp4M,116
22
+ LoopStructural/datasets/data/geological_map_data/bbox.csv,sha256=veVXP5BhNnZVBB7SiaNam3NxAp53XJkOw14FmuGTR8U,75
23
+ LoopStructural/datasets/data/geological_map_data/contacts.csv,sha256=ghYAaXOOSFaOV7EJnFG_EozFRbnizJfNKPYf3cJNj-Q,50635
24
+ LoopStructural/datasets/data/geological_map_data/fault_displacement.csv,sha256=QXuZYPXbtOEaCAYQ3A_09RIX3zhYOIlb3Oazkfq2mrE,168
25
+ LoopStructural/datasets/data/geological_map_data/fault_edges.txt,sha256=kZO_zguYbiLqrXhGaRbnD3T0INKkDm7QjhY43PQKxi0,46
26
+ LoopStructural/datasets/data/geological_map_data/fault_locations.csv,sha256=gegNoEShkfUkzvjEkOaPKfuUeYfhLpQK1wCYwtVF5SU,5127
27
+ LoopStructural/datasets/data/geological_map_data/fault_orientations.csv,sha256=OTSNnhjk-P5AJPGXbrzWmp9uAVOsIBEq2fLwOto29eQ,2261
28
+ LoopStructural/datasets/data/geological_map_data/stratigraphic_order.csv,sha256=-CYs3pBGa2osBatCRwmirolT_gac90gFHymKXu-QRJ8,353
29
+ LoopStructural/datasets/data/geological_map_data/stratigraphic_orientations.csv,sha256=RysyqUAIjY6iIDUfTh11n9QUQWXB_qxKnZeN_DqNzlY,26745
30
+ LoopStructural/datasets/data/geological_map_data/stratigraphic_thickness.csv,sha256=pnSmG-wL8-kxuoHo_pgpJrfTmsZOzc8L0vxpBRh3r8A,355
31
+ LoopStructural/datatypes/__init__.py,sha256=lVg64DnynMm58qvYTjLrcyWH7vk2ngr9JGMo5FaiALI,160
32
+ LoopStructural/datatypes/_bounding_box.py,sha256=kK2hbI9NCBcR9K6S7FNZs9cbaUPVcT41Okg_MZqObcA,14101
33
+ LoopStructural/datatypes/_point.py,sha256=DH-s8GJeomOwRmalqooNqeV5AOaEHOxVeW7a8yrb14A,5251
34
+ LoopStructural/datatypes/_structured_grid.py,sha256=OFE7dog3TSBSUDGbSEV7ZPUekG0ToNAkFROw8pcm014,3184
35
+ LoopStructural/datatypes/_surface.py,sha256=J40crDWkbGAbaDNYP0J8koO_eWdZucmbXRsGxLPVHDU,5964
36
+ LoopStructural/export/exporters.py,sha256=BniZu-PqQvHqCU6GIuJQ5FPzI9Dx_T6rI8EW1pykois,17209
37
+ LoopStructural/export/file_formats.py,sha256=0xKyYSW4Jv_4jsXwusg-WO6PNUhZKd6HdWSqGSaPve8,232
38
+ LoopStructural/export/geoh5.py,sha256=TByfnHul1Rg4oB5KPnD-yCcZ-uNr4cxuYnRB_6mclnA,4253
39
+ LoopStructural/export/gocad.py,sha256=cQ6v7ZD0CVubt3c2f9EwAYrziu5bEFSWBtx0uade5mg,3370
40
+ LoopStructural/export/omf_wrapper.py,sha256=faswHT4k1ZMaJLdZIyxGJp-IlXBdwGREnlcOSooJh3o,2375
41
+ LoopStructural/interpolators/__init__.py,sha256=pBxqCCIJ3WS8W179EnFK9QVmIzgzqqt0T3ehu5absWA,2944
42
+ LoopStructural/interpolators/_api.py,sha256=m1o5oza7kOXDPgasDqKY1AQE-Tz0pCzuTJXtqgA5S88,4858
43
+ LoopStructural/interpolators/_builders.py,sha256=6M8__gGDO-dyu3LPIwcPia1knLR5-EH0GBMLSF0Kuwc,6476
44
+ LoopStructural/interpolators/_discrete_fold_interpolator.py,sha256=4yfXIKiFTllomWF0nSLDtOk0S6MflkG7uZbvVcGW6KE,6247
45
+ LoopStructural/interpolators/_discrete_interpolator.py,sha256=NOIlIosMPozSS63coGM1zwJTioezLuDzbZZ5sbX8Dzk,23671
46
+ LoopStructural/interpolators/_finite_difference_interpolator.py,sha256=kwu5L9kTEelB0ibiKTZBtWSZxClJTP9PRMmmlfODbO8,16505
47
+ LoopStructural/interpolators/_geological_interpolator.py,sha256=FGyc8AcuTh70kedbMK4QO9KMTdaA81bELh587n8bJHQ,10408
48
+ LoopStructural/interpolators/_interpolator_factory.py,sha256=LSxrf7tEWek_0tNxioGHeWWwu3Ywf8Ar79M6gC75tBY,3468
49
+ LoopStructural/interpolators/_non_linear_discrete_interpolator.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ LoopStructural/interpolators/_operator.py,sha256=PZOUzq9OMaJdG151dSLIo7AxRuhTj6-zEAzFZo-EOJU,1114
51
+ LoopStructural/interpolators/_p1interpolator.py,sha256=et-8sRX442XVNZK14XHx7GYtkCaW7OSkawn9zzftg3g,8753
52
+ LoopStructural/interpolators/_p2interpolator.py,sha256=UT-As5RNsmOwHOzO_6FiRcAwlNHfi4ILbJw2LGpwKAw,10274
53
+ LoopStructural/interpolators/_surfe_wrapper.py,sha256=OOf8KevdBGRnrYtkw3EPTWR9Iy43gpH4Vj4UrbEiJmA,5909
54
+ LoopStructural/interpolators/_cython/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ LoopStructural/interpolators/supports/_2d_base_unstructured.py,sha256=IPDdXGn8QVPugqVGbepj2rKQjbQinjZtduus240wvb0,11197
56
+ LoopStructural/interpolators/supports/_2d_p1_unstructured.py,sha256=okcy56nyjuedmknQn_95V2tm0kdMA-oJcD3U2jU8u0w,2637
57
+ LoopStructural/interpolators/supports/_2d_p2_unstructured.py,sha256=TeBVtT1PMV7CKzmnFZke37acMoFxouer20cskS7pVoE,10422
58
+ LoopStructural/interpolators/supports/_2d_structured_grid.py,sha256=8jG0ASTHtCiEohvsc8TzwBVwJ0iyJJID4SVJQwgk2nk,14978
59
+ LoopStructural/interpolators/supports/_2d_structured_tetra.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ LoopStructural/interpolators/supports/_3d_base_structured.py,sha256=IDORlhwyCYP3paBEd1Dtwc7u6Oszs6CxcaNgHRH6wCI,14539
61
+ LoopStructural/interpolators/supports/_3d_p2_tetra.py,sha256=CqGVJRUMxbPQZDhhopNt_s9gVhMqh4YbjQyDZonoyxc,11574
62
+ LoopStructural/interpolators/supports/_3d_structured_grid.py,sha256=S6w0z7GpxS6EaJ-PW18_onnrTUf3U25QxkMw56MI1aU,16361
63
+ LoopStructural/interpolators/supports/_3d_structured_tetra.py,sha256=x032Bipt5r3st5JWska8dpq-FU32rnaDQhKXJQqyYCg,26279
64
+ LoopStructural/interpolators/supports/_3d_unstructured_tetra.py,sha256=rtMSdy4cg0bSmNtvYa8-Sue8WVhsK57F5YKBiBJr58M,23265
65
+ LoopStructural/interpolators/supports/__init__.py,sha256=PU68529KecFJS0QiH6GzWj2q4SaCzkBEZhryO_RNZ3Q,1485
66
+ LoopStructural/interpolators/supports/_aabb.py,sha256=Z-kH_u6c6izak0aHG3Uo14PEKQeZmYlevLDC32Q06xk,3208
67
+ LoopStructural/interpolators/supports/_base_support.py,sha256=KgSBW3YhRSX1Tm8h6a-2dQiuJxeKIhqVCmSYgASgMX8,2275
68
+ LoopStructural/interpolators/supports/_face_table.py,sha256=Hyj4Io63NkPRN8ab9uDHyec-2Kb8BLY_xBF6STNlvBw,3095
69
+ LoopStructural/interpolators/supports/_support_factory.py,sha256=c86NnM4azWhS2ajPApePap0sFI82mZC8siVAU1fCOn4,1175
70
+ LoopStructural/modelling/__init__.py,sha256=pPJSZMlyE_xliv0c1C4M5QlqYuBOUTRLQQtmXKQ1xpU,754
71
+ LoopStructural/modelling/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
+ LoopStructural/modelling/core/geological_model.py,sha256=izhq1plPWLjJb8qwJbpqf6PPN4ndC1_2-5ujv6x4dQg,66173
73
+ LoopStructural/modelling/features/__init__.py,sha256=qTl-jTau-nnSZ4G4Np6JkBcXB01ViXhouUo_-ImoDvk,877
74
+ LoopStructural/modelling/features/_analytical_feature.py,sha256=L0GQvOPAk27KNejaqvbLXOJo_jbJJS_V3m4c9Dymheg,2701
75
+ LoopStructural/modelling/features/_base_geological_feature.py,sha256=SP-lWDJDdXZY0UAht33sJkOpW-lGN9NZqP2RuZDgyxg,11102
76
+ LoopStructural/modelling/features/_cross_product_geological_feature.py,sha256=IOcJBgQeGBOgwymcyyEdsQHHbVs23sYPpl8xavBaPZE,2781
77
+ LoopStructural/modelling/features/_geological_feature.py,sha256=pdLum5tTn4aImUhe-47F6jyqbSb73-AIWhegLNG7FP4,9699
78
+ LoopStructural/modelling/features/_lambda_geological_feature.py,sha256=pEfLN9HcYGluxRB7LJpcKdYqXP_Mkyo1pLZ3kZZ4mvA,2599
79
+ LoopStructural/modelling/features/_region.py,sha256=TB4qnoTDQM2VgRjgyODN839fKe3kuRYLllJj0xnDKXo,478
80
+ LoopStructural/modelling/features/_structural_frame.py,sha256=I6W-YkQiRADX7xcKMFzDefYGDlXWVAp5nAVRFVcqNow,5062
81
+ LoopStructural/modelling/features/_unconformity_feature.py,sha256=-0shSjYdT8IuNDNDYnqJ2niFjFFiBt-Izc-oMBYa0MQ,2405
82
+ LoopStructural/modelling/features/builders/__init__.py,sha256=Gqld1C-PcaXfJ8vpkWMDCmehmd3hZNYQk1knPtl59Bk,266
83
+ LoopStructural/modelling/features/builders/_base_builder.py,sha256=cafVl-KImwSZmHxTuzlpnkh1lW9ARJXJLE0NQ4T_ook,3221
84
+ LoopStructural/modelling/features/builders/_fault_builder.py,sha256=EyDLyovrnxqSk11zWFnViok7lXMt_E-pG2QqgRgvOLk,25653
85
+ LoopStructural/modelling/features/builders/_folded_feature_builder.py,sha256=oeJjCnY_L4FXRvH-bPBySWlyups68H0cM1eXjXef3aY,5242
86
+ LoopStructural/modelling/features/builders/_geological_feature_builder.py,sha256=uBPcwW87SQVH7nYQIZCXFqCpWrKhI1QJ70WC0rTTdlk,20960
87
+ LoopStructural/modelling/features/builders/_structural_frame_builder.py,sha256=jVIV1wUo1MxcpFx6RxBtl8IgXJt2USq7XX1m-NAcMNU,7635
88
+ LoopStructural/modelling/features/fault/__init__.py,sha256=tkKhGJDyuzzV4WoXsoknwUBaLY_WmpZYGMCY9NK7dfM,170
89
+ LoopStructural/modelling/features/fault/_fault_function.py,sha256=eIZCsGp2-zNgFWjtlmgq3JGRvQ8EeUyU6iVOuVAeLVU,12083
90
+ LoopStructural/modelling/features/fault/_fault_function_feature.py,sha256=1F_xGGRtLZ7mBnXutEGkwWoJImSEPUuxstf0Nu-7k5w,2452
91
+ LoopStructural/modelling/features/fault/_fault_segment.py,sha256=3JXRGq2cz3rqfl3OhDE3dWzZE2-g_nihHtmS0muxRgk,18221
92
+ LoopStructural/modelling/features/fold/__init__.py,sha256=taSRFnKibB0KdvFlvpJKrL_ZtmFaiQzC_U4qL7n4K9o,244
93
+ LoopStructural/modelling/features/fold/_fold.py,sha256=bPnnLUSiF4uoMRg8aHoOSTPRgaM0JyLoRQPu5_A-J3w,5448
94
+ LoopStructural/modelling/features/fold/_fold_rotation_angle.py,sha256=9kKMQsOmJJGAs5vGDp7FSYgKL71yH04FslILRG3Beb8,4456
95
+ LoopStructural/modelling/features/fold/_fold_rotation_angle_feature.py,sha256=SQ7HxlHf_QrnlpK6EJ6lpn4yLcw5t820hjAxRs6EQpk,1222
96
+ LoopStructural/modelling/features/fold/_foldframe.py,sha256=sX_Akae4JLlB4rC3oMQ6KEtEX57euqInNLF8hc8-AoE,7721
97
+ LoopStructural/modelling/features/fold/_svariogram.py,sha256=uatBG12QUxenNUEiayUlRQMoLREFAc0mxyaZVPIVz5k,6326
98
+ LoopStructural/modelling/input/__init__.py,sha256=HhJM3V5b-8_64LiRbF3Bd1pjWhJlcknxMSMPRrqZ0-I,153
99
+ LoopStructural/modelling/input/fault_network.py,sha256=0uxl7lOySdhMhNXoiOkuiHIXqAz1Ls0j-W65cmdQoP8,2348
100
+ LoopStructural/modelling/input/map2loop_processor.py,sha256=T7Fgqd7FNJWylLKvfIniRZBMRMeAoP8iU330-WYU8Fg,7031
101
+ LoopStructural/modelling/input/process_data.py,sha256=M02AzLbHd7X6SIvIQG-zXBf71FIzMIjI1ITqwIW9AEk,25160
102
+ LoopStructural/modelling/input/project_file.py,sha256=mnK6Ts2z_XquYO_JviM-cXTH8T3YA_ZpqrC2qyLaU8M,3305
103
+ LoopStructural/modelling/intrusions/__init__.py,sha256=EpZK3cHJwGQhPUYIwKCKu8vkNdt_nOgWF0zfhiqDYDA,712
104
+ LoopStructural/modelling/intrusions/geom_conceptual_models.py,sha256=jwTlhYySUj7z4DEnJoi4AINZB_N3-SW6ONRFL66OsW0,3665
105
+ LoopStructural/modelling/intrusions/geometric_scaling_functions.py,sha256=PK3qf0TiK-WYIBGG7fYhTD1hwlUN0s75BK8d53SLYuQ,3209
106
+ LoopStructural/modelling/intrusions/intrusion_builder.py,sha256=1cJjPyRUf3ZDkpwgGJ7TvY-kpqFgG9pXD8yrGfhqwYg,26381
107
+ LoopStructural/modelling/intrusions/intrusion_feature.py,sha256=5DFQ1uccX7Rp3PMc_pidw-HixDtKyiRhfLkIUye_Gcc,15455
108
+ LoopStructural/modelling/intrusions/intrusion_frame_builder.py,sha256=Q1TPHxREcrO7Rw71nUfACZHfYnISLjqlgkUNTPT324k,40143
109
+ LoopStructural/modelling/intrusions/intrusion_support_functions.py,sha256=wodakheMD62WJyoKnyX8UO-C1pje0I-5kHQEoDqShzo,13951
110
+ LoopStructural/utils/__init__.py,sha256=K6OwdnC8RE-sDhG4GIbVyoJNUD0WnM1VGG6os1l_Woc,870
111
+ LoopStructural/utils/_surface.py,sha256=Wc4xLhSjyjNNDWkj9X88R0HKMviU1R206SLU9sHhLaU,5369
112
+ LoopStructural/utils/_transformation.py,sha256=7iDPMIBoZ73ZGa_slbC9XzdMQ-ONOxvF7UkY4dJaw54,2443
113
+ LoopStructural/utils/config.py,sha256=ITGOtZTo2_QBwXkG_0AFANfE90J9siCXLzxypVmg9QA,414
114
+ LoopStructural/utils/dtm_creator.py,sha256=-yqGG0wyEJfTCCDghz058wull1q3zGFASjeu8oDgYnk,535
115
+ LoopStructural/utils/exceptions.py,sha256=SJboJ7ncMqVX-ib7MMizClwMrFZRHQhjZr2eCnVwnQE,500
116
+ LoopStructural/utils/helper.py,sha256=An9NuRH16cASUWq2ZakHc1tZt_AvUpgx8tv4cyWZEQk,6581
117
+ LoopStructural/utils/json_encoder.py,sha256=5YNouf1TlhjEqOYgthd07MRXc0JLgxern-nyKSZ__ws,403
118
+ LoopStructural/utils/linalg.py,sha256=tBXyu6NXcG2AcPuzUMnkVI4ncZWtE_MPHGj2PLXRwfY,123
119
+ LoopStructural/utils/logging.py,sha256=dIUWEsS2lT4G1dsf4ZYXknTR7eQkrgvGA4b_E0vMIRU,2402
120
+ LoopStructural/utils/maths.py,sha256=Y6xjNgfWD9TdaJaDuJJ_Uy8JNBzHA1fbVzQ8JPp_kW0,6668
121
+ LoopStructural/utils/regions.py,sha256=LvcOCPudF4u95-GKBOZqXVxOEcR3cOFgFpcs5x43sMk,3914
122
+ LoopStructural/utils/typing.py,sha256=29uVSTZdzXXH-jdlaYyBWZ1gQ2-nlZ2-XoVgG_PXNFY,157
123
+ LoopStructural/utils/utils.py,sha256=2Z4zVE6G752-SPmM29zebk82bROJxEwi_YiiJjcVED4,2438
124
+ LoopStructural/visualisation/__init__.py,sha256=5BDgKor8-ae6DrS7IZybJ3Wq_pTnCchxuY4EgzA7v1M,318
125
+ LoopStructural-1.6.1.dist-info/LICENSE,sha256=ZqGeNFOgmYevj7Ld7Q-kR4lAxWXuBRUdUmPC6XM_py8,1071
126
+ LoopStructural-1.6.1.dist-info/METADATA,sha256=B_oF9J3Gjg7KBEaDGHma20b0IpW5bZqydSqmDPXY01E,4958
127
+ LoopStructural-1.6.1.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
128
+ LoopStructural-1.6.1.dist-info/top_level.txt,sha256=QtQErKzYHfg6ddxTQ1NyaTxXBVM6qAqrM_vxEPyXZLg,15
129
+ LoopStructural-1.6.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (72.1.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ LoopStructural