resqpy 5.1.6__py3-none-any.whl → 5.1.8__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.
- resqpy/__init__.py +1 -1
- resqpy/grid_surface/_find_faces.py +9 -5
- resqpy/multi_processing/wrappers/grid_surface_mp.py +7 -2
- resqpy/organize/fault_interpretation.py +7 -5
- {resqpy-5.1.6.dist-info → resqpy-5.1.8.dist-info}/METADATA +1 -1
- {resqpy-5.1.6.dist-info → resqpy-5.1.8.dist-info}/RECORD +8 -8
- {resqpy-5.1.6.dist-info → resqpy-5.1.8.dist-info}/LICENSE +0 -0
- {resqpy-5.1.6.dist-info → resqpy-5.1.8.dist-info}/WHEEL +0 -0
resqpy/__init__.py
CHANGED
@@ -881,7 +881,8 @@ def find_faces_to_represent_surface_regular_optimised(grid,
|
|
881
881
|
raw_bisector = False,
|
882
882
|
n_batches = 20,
|
883
883
|
packed_bisectors = False,
|
884
|
-
patch_indices = None
|
884
|
+
patch_indices = None,
|
885
|
+
direction = 'IJK'):
|
885
886
|
"""Returns a grid connection set containing those cell faces which are deemed to represent the surface.
|
886
887
|
|
887
888
|
argumants:
|
@@ -919,6 +920,8 @@ def find_faces_to_represent_surface_regular_optimised(grid,
|
|
919
920
|
non curtain bisectors are returned in packed form
|
920
921
|
patch_indices (numpy int array, optional): if present, an array over grid cells indicating which
|
921
922
|
patch of surface is applicable in terms of a bisector, for each cell
|
923
|
+
direction (str, default 'IJK'): indicates which face directions to include; one of 'I', 'J', 'K',
|
924
|
+
'IJ', IK', 'JK', 'IJK"
|
922
925
|
|
923
926
|
returns:
|
924
927
|
gcs or (gcs, gcs_props)
|
@@ -935,7 +938,8 @@ def find_faces_to_represent_surface_regular_optimised(grid,
|
|
935
938
|
organisational objects for the feature are created if needed;
|
936
939
|
if the offset return property is requested, the implicit units will be the z units of the grid's crs;
|
937
940
|
if patch_indices is present and grid bisectors are being returned, a composite bisector array is returned
|
938
|
-
with elements set from individual bisectors for each patch of surface
|
941
|
+
with elements set from individual bisectors for each patch of surface;
|
942
|
+
if generating a grid bisector property then direction will typically need to be 'IJK'
|
939
943
|
"""
|
940
944
|
|
941
945
|
assert isinstance(grid, grr.RegularGrid)
|
@@ -1018,7 +1022,7 @@ def find_faces_to_represent_surface_regular_optimised(grid,
|
|
1018
1022
|
k_depths = None
|
1019
1023
|
k_offsets = None
|
1020
1024
|
k_props = None
|
1021
|
-
if nk > 1:
|
1025
|
+
if nk > 1 and 'K' in direction:
|
1022
1026
|
# log.debug("searching for k faces")
|
1023
1027
|
|
1024
1028
|
k_hits, k_depths = vec.points_in_triangles_aligned_unified(grid.ni, grid.nj, 0, 1, 2, p, n_batches)
|
@@ -1061,7 +1065,7 @@ def find_faces_to_represent_surface_regular_optimised(grid,
|
|
1061
1065
|
j_depths = None
|
1062
1066
|
j_offsets = None
|
1063
1067
|
j_props = None
|
1064
|
-
if grid.nj > 1:
|
1068
|
+
if grid.nj > 1 and 'J' in direction:
|
1065
1069
|
# log.debug("searching for J faces")
|
1066
1070
|
|
1067
1071
|
j_hits, j_depths = vec.points_in_triangles_aligned_unified(grid.ni, nk, 0, 2, 1, p, n_batches)
|
@@ -1113,7 +1117,7 @@ def find_faces_to_represent_surface_regular_optimised(grid,
|
|
1113
1117
|
i_depths = None
|
1114
1118
|
i_offsets = None
|
1115
1119
|
i_props = None
|
1116
|
-
if grid.ni > 1:
|
1120
|
+
if grid.ni > 1 and 'I' in direction:
|
1117
1121
|
# log.debug("searching for I faces")
|
1118
1122
|
|
1119
1123
|
i_hits, i_depths = vec.points_in_triangles_aligned_unified(grid.nj, nk, 1, 2, 0, p, n_batches)
|
@@ -50,7 +50,8 @@ def find_faces_to_represent_surface_regular_wrapper(
|
|
50
50
|
n_threads: int = 20,
|
51
51
|
patchwork: bool = False,
|
52
52
|
grid_patching_property_uuid: Optional[Union[UUID, str]] = None,
|
53
|
-
surface_patching_property_uuid: Optional[Union[UUID, str]] = None
|
53
|
+
surface_patching_property_uuid: Optional[Union[UUID, str]] = None,
|
54
|
+
direction = 'IJK') -> \
|
54
55
|
Tuple[int, bool, str, List[Union[UUID, str]]]:
|
55
56
|
"""Multiprocessing wrapper function of find_faces_to_represent_surface_regular_optimised.
|
56
57
|
|
@@ -116,6 +117,8 @@ def find_faces_to_represent_surface_regular_wrapper(
|
|
116
117
|
surface_patching_property_uuid (uuid, optional): required if patchwork is True, the uuid of a discrete or
|
117
118
|
categorical property on the patches of the surface, identifying the value of the grid patching property
|
118
119
|
that each patch relates to
|
120
|
+
direction (str, default 'IJK'): indicates which face directions to include; one of 'I', 'J', 'K',
|
121
|
+
'IJ', IK', 'JK', 'IJK"
|
119
122
|
|
120
123
|
returns:
|
121
124
|
Tuple containing:
|
@@ -134,6 +137,7 @@ def find_faces_to_represent_surface_regular_wrapper(
|
|
134
137
|
the shift being in the +ve z hemisphere; in either case the direction of the shift is perpendicular
|
135
138
|
to the average plane of the original points
|
136
139
|
- patchwork is not compatible with re-triangulation
|
140
|
+
- if grid bisector is included in return properties, direction will usually need to be 'IJK'
|
137
141
|
"""
|
138
142
|
tmp_dir = Path(parent_tmp_dir) / f"{uuid.uuid4()}"
|
139
143
|
tmp_dir.mkdir(parents = True, exist_ok = True)
|
@@ -302,7 +306,8 @@ def find_faces_to_represent_surface_regular_wrapper(
|
|
302
306
|
raw_bisector = raw_bisector,
|
303
307
|
n_batches = n_threads,
|
304
308
|
packed_bisectors = use_pack,
|
305
|
-
patch_indices = patch_indices
|
309
|
+
patch_indices = patch_indices,
|
310
|
+
direction = direction)
|
306
311
|
|
307
312
|
success = False
|
308
313
|
|
@@ -32,7 +32,7 @@ class FaultInterpretation(BaseResqpy):
|
|
32
32
|
tectonic_boundary_feature = None,
|
33
33
|
domain = 'depth',
|
34
34
|
is_normal = None,
|
35
|
-
is_listric =
|
35
|
+
is_listric = False,
|
36
36
|
maximum_throw = None,
|
37
37
|
mean_azimuth = None,
|
38
38
|
mean_dip = None,
|
@@ -44,7 +44,7 @@ class FaultInterpretation(BaseResqpy):
|
|
44
44
|
# if not extracting from xml,:
|
45
45
|
# tectonic_boundary_feature is required and must be a TectonicBoundaryFeature object
|
46
46
|
# domain is required and must be one of 'depth', 'time' or 'mixed'
|
47
|
-
# is_listric is required if the fault is
|
47
|
+
# is_listric is required if the fault is normal (and is ignored if not normal)
|
48
48
|
# max throw, azimuth & dip are all optional
|
49
49
|
# the throw interpretation list is not supported for direct initialisation
|
50
50
|
|
@@ -53,10 +53,12 @@ class FaultInterpretation(BaseResqpy):
|
|
53
53
|
if (not title) and self.tectonic_boundary_feature is not None:
|
54
54
|
title = self.tectonic_boundary_feature.feature_name
|
55
55
|
self.main_has_occurred_during = (None, None)
|
56
|
+
if is_normal is None:
|
57
|
+
is_normal = (is_listric is not None)
|
56
58
|
self.is_normal = is_normal # extra field, not explicitly in RESQML
|
57
59
|
self.domain = domain
|
58
60
|
# RESQML xml business rule: IsListric must be present if the fault is normal; must not be present if the fault is not normal
|
59
|
-
self.is_listric = is_listric
|
61
|
+
self.is_listric = is_listric if is_normal else None
|
60
62
|
self.maximum_throw = maximum_throw
|
61
63
|
self.mean_azimuth = mean_azimuth
|
62
64
|
self.mean_dip = mean_dip
|
@@ -87,7 +89,7 @@ class FaultInterpretation(BaseResqpy):
|
|
87
89
|
self.feature_root))
|
88
90
|
self.main_has_occurred_during = ou.extract_has_occurred_during(root_node)
|
89
91
|
self.is_listric = rqet.find_tag_bool(root_node, 'IsListric')
|
90
|
-
self.is_normal = (self.is_listric is None)
|
92
|
+
self.is_normal = (self.is_listric is not None)
|
91
93
|
self.maximum_throw = rqet.find_tag_float(root_node, 'MaximumThrow')
|
92
94
|
# todo: check that type="eml:LengthMeasure" is simple float
|
93
95
|
self.mean_azimuth = rqet.find_tag_float(root_node, 'MeanAzimuth')
|
@@ -164,7 +166,7 @@ class FaultInterpretation(BaseResqpy):
|
|
164
166
|
|
165
167
|
# note: related tectonic boundary feature node should be created first and referenced here
|
166
168
|
|
167
|
-
assert self.is_normal == (self.is_listric is None)
|
169
|
+
assert self.is_normal == (self.is_listric is not None)
|
168
170
|
if not self.title:
|
169
171
|
if tectonic_boundary_feature_root is not None:
|
170
172
|
title = rqet.find_nested_tags_text(tectonic_boundary_feature_root, ['Citation', 'Title'])
|
@@ -1,4 +1,4 @@
|
|
1
|
-
resqpy/__init__.py,sha256
|
1
|
+
resqpy/__init__.py,sha256=-ilwl-tTKv_tDcoim3YUzpSMlDOV_pTqG_cs4Q7ioYg,555
|
2
2
|
resqpy/crs.py,sha256=R7DfcTP5xGv5pu9Y8RHA2WVM9DjBCSVMoHcz4RmQ7Yw,27646
|
3
3
|
resqpy/derived_model/__init__.py,sha256=NFvMSOKI3cxmH7lAbddV43JjoUj-r2G7ExEfOqinD1I,1982
|
4
4
|
resqpy/derived_model/_add_edges_per_column_property_array.py,sha256=cpW3gwp6MSYIrtvFmCjoJXcyUsgGuCDbgmwlJCJebUs,6410
|
@@ -47,7 +47,7 @@ resqpy/grid/_write_nexus_corp.py,sha256=yEVfiObsedEAXX6UG6ZTf56kZnQVkd3lLqE2NpL-
|
|
47
47
|
resqpy/grid/_xyz.py,sha256=RLQWOdM_DRoCj4JypwB5gUJ78HTdk5JnZHSeAzuU634,13087
|
48
48
|
resqpy/grid_surface/__init__.py,sha256=zSbyDwUH_p0UXd9PAcAXvcS1wrmRVnZvXXa1zQSQBlY,2925
|
49
49
|
resqpy/grid_surface/_blocked_well_populate.py,sha256=Lme1AR-nLWOUlNnmHMVThk6jEg_lAZxWWtL82Yksppw,35867
|
50
|
-
resqpy/grid_surface/_find_faces.py,sha256=
|
50
|
+
resqpy/grid_surface/_find_faces.py,sha256=QwJkeZCdRO1zJNCcA0xm6Lr81uBPv80FmvddLIbUgeg,120944
|
51
51
|
resqpy/grid_surface/_grid_skin.py,sha256=D0cjHkcuT5KCKb-8EZfXgh0GgJj3kzOBS2wVNXg4bfY,26056
|
52
52
|
resqpy/grid_surface/_grid_surface.py,sha256=l2NJo7Kiucolbb_TlLPC7NGdksg_JahkihfsrJVq99w,14379
|
53
53
|
resqpy/grid_surface/_trajectory_intersects.py,sha256=Och9cZYU9Y7ofovhPzsLyIblRUl2xj9_5nHH3fMZp-A,22498
|
@@ -68,7 +68,7 @@ resqpy/multi_processing/__init__.py,sha256=ZRudHfN9aaZjxvat7t8BZr6mwMi9baiCNjczw
|
|
68
68
|
resqpy/multi_processing/_multiprocessing.py,sha256=bnCKfSC1tWwvZmZ7BZqCyje0C93m6q7HZPxNpx8xoxA,7301
|
69
69
|
resqpy/multi_processing/wrappers/__init__.py,sha256=7vjuTWdHnp3rN9Ud8ljpDnt1NbBAyhA08lv-sQ9Kf3o,72
|
70
70
|
resqpy/multi_processing/wrappers/blocked_well_mp.py,sha256=_2fEsSmJVQCnbQIjTHqmnNEugfhN1KvX-o4ZbvtChdI,5952
|
71
|
-
resqpy/multi_processing/wrappers/grid_surface_mp.py,sha256=
|
71
|
+
resqpy/multi_processing/wrappers/grid_surface_mp.py,sha256=3dt6yj9vj3lSjqnRJ7ZTc9KySirxaRrLgd55WOhaJek,27443
|
72
72
|
resqpy/multi_processing/wrappers/mesh_mp.py,sha256=0VYoqtgBFfrlyYB6kkjbdrRQ5FKe6t5pHJO3wD9b8Fc,5793
|
73
73
|
resqpy/olio/__init__.py,sha256=j2breqKYVufhw5k8qS2uZwB3tUKT7FhdZ23ninS75YA,84
|
74
74
|
resqpy/olio/ab_toolbox.py,sha256=bZlAhOJVS0HvIYBW0Lg68re17N8eltoQhIUh0xuUyVc,2147
|
@@ -110,7 +110,7 @@ resqpy/organize/_utils.py,sha256=p1ec0ytUv8X4SFn0cCp5g-aWjucNR7xKQEwkcMOyHYM,293
|
|
110
110
|
resqpy/organize/boundary_feature.py,sha256=AqSTtYpEKBXgkggzETbl61PhtdatIEFwXkzcrqRlj0A,1685
|
111
111
|
resqpy/organize/boundary_feature_interpretation.py,sha256=u0vTBFAhIVOHOjF5YlSIeNDq17qW2fWKwT8H-PtTMNQ,5190
|
112
112
|
resqpy/organize/earth_model_interpretation.py,sha256=-2aJ7NSbuOWjSSKABqDwyZL67gxQ_RlxerhsOQcaq0I,6186
|
113
|
-
resqpy/organize/fault_interpretation.py,sha256=
|
113
|
+
resqpy/organize/fault_interpretation.py,sha256=srLl0HZ0B4-DOIyQC61q4-PrmKS0N0pR1bP_OGBxHYM,12566
|
114
114
|
resqpy/organize/fluid_boundary_feature.py,sha256=OyBz_oHhrD_d1tlcXPOBvsvgns2JY1G9zMt9PM0U6nM,2757
|
115
115
|
resqpy/organize/frontier_feature.py,sha256=DbGEtHKCUxXyYdjP7aV1PXU-jXtLz_M-e3gMg_CJqWs,1702
|
116
116
|
resqpy/organize/generic_interpretation.py,sha256=ILh5bibemk5t-1Ozfz9e8KYo9ijQYWs8p23tlV4jJ04,4498
|
@@ -193,7 +193,7 @@ resqpy/well/_wellbore_marker_frame.py,sha256=xvYH2_2Ie3a18LReFymbUrZboOx7Rhv5DOD
|
|
193
193
|
resqpy/well/blocked_well_frame.py,sha256=Rx8jwkCjchseDZaTttPkA1-f6l7W6vRGrxWtDHlEPx8,22560
|
194
194
|
resqpy/well/well_object_funcs.py,sha256=1O4EVPuTn-kN3uT_V4TbSwehnMUMY0TX36XOUgasTcc,24689
|
195
195
|
resqpy/well/well_utils.py,sha256=-g_pg2v5XD9g4SQz9sk7KK-x2xEQZHzWehCQqiEGo6M,7627
|
196
|
-
resqpy-5.1.
|
197
|
-
resqpy-5.1.
|
198
|
-
resqpy-5.1.
|
199
|
-
resqpy-5.1.
|
196
|
+
resqpy-5.1.8.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
|
197
|
+
resqpy-5.1.8.dist-info/METADATA,sha256=Xgx175NkH8hnkGVXzQNhRpr0y6J8ilxauycgXyxpP78,3986
|
198
|
+
resqpy-5.1.8.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
199
|
+
resqpy-5.1.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|