resqpy 4.18.1__py3-none-any.whl → 4.18.2__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 +11 -7
- {resqpy-4.18.1.dist-info → resqpy-4.18.2.dist-info}/METADATA +1 -1
- {resqpy-4.18.1.dist-info → resqpy-4.18.2.dist-info}/RECORD +6 -6
- {resqpy-4.18.1.dist-info → resqpy-4.18.2.dist-info}/LICENSE +0 -0
- {resqpy-4.18.1.dist-info → resqpy-4.18.2.dist-info}/WHEEL +0 -0
resqpy/__init__.py
CHANGED
@@ -865,7 +865,7 @@ def find_faces_to_represent_surface_regular_dense_optimised(grid,
|
|
865
865
|
if progress_fn is not None:
|
866
866
|
progress_fn(1.0)
|
867
867
|
|
868
|
-
log.debug(f"finishing
|
868
|
+
log.debug(f"finishing find_faces_to_represent_surface_regular_dense_optimised for {name}")
|
869
869
|
|
870
870
|
# if returning properties, construct dictionary
|
871
871
|
if return_properties:
|
@@ -1537,7 +1537,7 @@ def packed_bisector_from_face_indices( # type: ignore
|
|
1537
1537
|
|
1538
1538
|
# find the surface boundary (includes a buffer slice where surface does not reach edge of grid), and shrink the I axis
|
1539
1539
|
box = get_packed_boundary_from_indices(k_faces_kji0, j_faces_kji0, i_faces_kji0, grid_extent_kji)
|
1540
|
-
# set k_faces as uint8 packed bool arrays covering box
|
1540
|
+
# set k_faces, j_faces & i_faces as uint8 packed bool arrays covering box
|
1541
1541
|
k_faces, j_faces, i_faces = _packed_box_face_arrays_from_indices(k_faces_kji0, j_faces_kji0, i_faces_kji0, box)
|
1542
1542
|
|
1543
1543
|
box_shape = box[1, :] - box[0, :]
|
@@ -1562,9 +1562,10 @@ def packed_bisector_from_face_indices( # type: ignore
|
|
1562
1562
|
else:
|
1563
1563
|
open_i = np.invert(i_faces, dtype = np.uint8)
|
1564
1564
|
|
1565
|
-
# close off faces in padding bits
|
1566
|
-
|
1567
|
-
|
1565
|
+
# close off faces in padding bits, if within box
|
1566
|
+
if box[1, 2] * 8 > grid_extent_kji[2]:
|
1567
|
+
tail = grid_extent_kji[2] % 8 # number of valid bits in padded byte
|
1568
|
+
assert tail
|
1568
1569
|
m = np.uint8((255 << (8 - tail)) & 255)
|
1569
1570
|
open_k[:, :, -1] &= m
|
1570
1571
|
open_j[:, :, -1] &= m
|
@@ -1581,7 +1582,7 @@ def packed_bisector_from_face_indices( # type: ignore
|
|
1581
1582
|
array[box[0, 0]:box[1, 0], box[0, 1]:box[1, 1], box[0, 2]:box[1, 2]] = box_array
|
1582
1583
|
|
1583
1584
|
# set bisector values outside of the bounding box
|
1584
|
-
_set_packed_bisector_outside_box(array, box, box_array)
|
1585
|
+
_set_packed_bisector_outside_box(array, box, box_array, grid_extent_kji[2] % 8)
|
1585
1586
|
|
1586
1587
|
# check all array elements are not the same
|
1587
1588
|
true_count = np.sum(bitwise_count(array)) # note: will usually include some padding bits, so not so true!
|
@@ -2127,7 +2128,7 @@ def _set_bisector_outside_box(a: np.ndarray, box: np.ndarray, box_array: np.ndar
|
|
2127
2128
|
a[:, :, :box[0, 2]] = True
|
2128
2129
|
|
2129
2130
|
|
2130
|
-
def _set_packed_bisector_outside_box(a: np.ndarray, box: np.ndarray, box_array: np.ndarray):
|
2131
|
+
def _set_packed_bisector_outside_box(a: np.ndarray, box: np.ndarray, box_array: np.ndarray, tail: int):
|
2131
2132
|
# set values outside of the bounding box, working with packed arrays
|
2132
2133
|
if box[1, 0] < a.shape[0] and np.any(box_array[-1, :, :]):
|
2133
2134
|
a[box[1, 0]:, :, :] = 255
|
@@ -2141,6 +2142,9 @@ def _set_packed_bisector_outside_box(a: np.ndarray, box: np.ndarray, box_array:
|
|
2141
2142
|
a[:, :, box[1, 2]:] = 255
|
2142
2143
|
if box[0, 2] != 0:
|
2143
2144
|
a[:, :, :box[0, 2]] = 255
|
2145
|
+
if tail:
|
2146
|
+
m = np.uint8((255 << (8 - tail)) & 255)
|
2147
|
+
a[:, :, -1] &= m
|
2144
2148
|
|
2145
2149
|
|
2146
2150
|
def _box_face_arrays_from_indices( # type: ignore
|
@@ -1,4 +1,4 @@
|
|
1
|
-
resqpy/__init__.py,sha256=
|
1
|
+
resqpy/__init__.py,sha256=x8ZNx5VINljpsdVs90zE08SbRx4LaxTtLTEVOc697cM,556
|
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
|
@@ -48,7 +48,7 @@ resqpy/grid/_write_nexus_corp.py,sha256=yEVfiObsedEAXX6UG6ZTf56kZnQVkd3lLqE2NpL-
|
|
48
48
|
resqpy/grid/_xyz.py,sha256=RLQWOdM_DRoCj4JypwB5gUJ78HTdk5JnZHSeAzuU634,13087
|
49
49
|
resqpy/grid_surface/__init__.py,sha256=IlPwm6G7P_Vg_w7JHqSs-d_oxk2QmFtWGTk_vvr1qm8,2911
|
50
50
|
resqpy/grid_surface/_blocked_well_populate.py,sha256=Lme1AR-nLWOUlNnmHMVThk6jEg_lAZxWWtL82Yksppw,35867
|
51
|
-
resqpy/grid_surface/_find_faces.py,sha256=
|
51
|
+
resqpy/grid_surface/_find_faces.py,sha256=iqXVt0VsiRjJ4rddrbNiBT2YzfWwhfRmOolhyFfWN0Y,105197
|
52
52
|
resqpy/grid_surface/_grid_skin.py,sha256=D0cjHkcuT5KCKb-8EZfXgh0GgJj3kzOBS2wVNXg4bfY,26056
|
53
53
|
resqpy/grid_surface/_grid_surface.py,sha256=l2NJo7Kiucolbb_TlLPC7NGdksg_JahkihfsrJVq99w,14379
|
54
54
|
resqpy/grid_surface/_trajectory_intersects.py,sha256=Och9cZYU9Y7ofovhPzsLyIblRUl2xj9_5nHH3fMZp-A,22498
|
@@ -194,7 +194,7 @@ resqpy/well/_wellbore_marker_frame.py,sha256=xvYH2_2Ie3a18LReFymbUrZboOx7Rhv5DOD
|
|
194
194
|
resqpy/well/blocked_well_frame.py,sha256=Rx8jwkCjchseDZaTttPkA1-f6l7W6vRGrxWtDHlEPx8,22560
|
195
195
|
resqpy/well/well_object_funcs.py,sha256=tWufc8wahihzMEO-Ou1dncIttrf4bNo1qmLgh3I2pOM,24717
|
196
196
|
resqpy/well/well_utils.py,sha256=zwpYjT85nXAwWBhYB1Pygu2SgouZ-44k6hEOnpoMfBI,5969
|
197
|
-
resqpy-4.18.
|
198
|
-
resqpy-4.18.
|
199
|
-
resqpy-4.18.
|
200
|
-
resqpy-4.18.
|
197
|
+
resqpy-4.18.2.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
|
198
|
+
resqpy-4.18.2.dist-info/METADATA,sha256=0pU9qfLEhFddkYoUstNROtZbXcxt2m4kg0l19rt7deI,4028
|
199
|
+
resqpy-4.18.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
200
|
+
resqpy-4.18.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|