resqpy 4.18.7__py3-none-any.whl → 4.18.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/_grid.py +30 -6
- {resqpy-4.18.7.dist-info → resqpy-4.18.8.dist-info}/METADATA +1 -1
- {resqpy-4.18.7.dist-info → resqpy-4.18.8.dist-info}/RECORD +6 -6
- {resqpy-4.18.7.dist-info → resqpy-4.18.8.dist-info}/LICENSE +0 -0
- {resqpy-4.18.7.dist-info → resqpy-4.18.8.dist-info}/WHEEL +0 -0
resqpy/__init__.py
CHANGED
resqpy/grid/_grid.py
CHANGED
@@ -1498,7 +1498,7 @@ class Grid(BaseResqpy):
|
|
1498
1498
|
"""
|
1499
1499
|
return z_corner_point_depths(self, order = order)
|
1500
1500
|
|
1501
|
-
def frontier(self, set_z_zero = True, title = None, add_as_part = True):
|
1501
|
+
def frontier(self, set_z_zero = True, title = None, add_as_part = True, mode = 'mean'):
|
1502
1502
|
"""Returns a frontier polygon (closed polyline) based on midpoints of edge coordinate lines, with z set to zero.
|
1503
1503
|
|
1504
1504
|
arguments:
|
@@ -1507,35 +1507,59 @@ class Grid(BaseResqpy):
|
|
1507
1507
|
- title (str, optional): the citation title for the polyline; if None, one is generated using the grid title
|
1508
1508
|
- add_as_part (bool default True): if True, the xml is created for the polyline and it is added as a part to
|
1509
1509
|
the model; if False, the create_xml() method is not called fot the polyline
|
1510
|
-
|
1510
|
+
- mode (str, default 'mean'): one of 'mean', 'top', 'base', 'inner', 'outer' determining how a non-vertical
|
1511
|
+
edge coordinate line is converted to a point to include in the frontier
|
1512
|
+
|
1511
1513
|
returns:
|
1512
1514
|
- closed Polyline representing the frontier of the grid in plan view
|
1513
1515
|
"""
|
1516
|
+
|
1517
|
+
def get_point(clep, mode, centrum):
|
1518
|
+
if mode == 'mean':
|
1519
|
+
return np.nanmean(clep, axis = 0)
|
1520
|
+
if mode == 'top':
|
1521
|
+
return clep[0]
|
1522
|
+
if mode == 'base':
|
1523
|
+
return clep[-1]
|
1524
|
+
assert mode in ['inner', 'outer'], f'unrecognised frontier mode: {mode}'
|
1525
|
+
vp = clep - np.expand_dims(centrum, axis = 0)
|
1526
|
+
dp = np.sum(vp * vp, axis = -1)
|
1527
|
+
if (dp[0] < dp[1] and mode == 'inner') or (dp[0] > dp[1] and mode == 'outer'):
|
1528
|
+
return clep[0]
|
1529
|
+
return clep[-1]
|
1530
|
+
|
1531
|
+
assert mode in ['mean', 'top', 'base', 'inner', 'outer']
|
1514
1532
|
coords = self.coordinate_line_end_points()
|
1533
|
+
centrum = None
|
1534
|
+
if mode in ['inner', 'outer']:
|
1535
|
+
centrum = np.nanmean(np.concatenate((coords[0, 0], coords[0, -1], coords[-1, 0], coords[-1, -1]), axis = 0),
|
1536
|
+
axis = 0)
|
1537
|
+
assert not np.any(
|
1538
|
+
np.isnan(centrum)), f'trying to make frontier polygon in mode {mode} when corners of grid not defined'
|
1515
1539
|
nj = self.nj
|
1516
1540
|
ni = self.ni
|
1517
1541
|
frontier = np.zeros((2 * (nj + ni), 3), dtype = float)
|
1518
1542
|
f_i = 0
|
1519
1543
|
for i in range(self.ni):
|
1520
|
-
c =
|
1544
|
+
c = get_point(coords[0, i], mode, centrum)
|
1521
1545
|
if np.any(np.isnan(c)):
|
1522
1546
|
continue
|
1523
1547
|
frontier[f_i] = c
|
1524
1548
|
f_i += 1
|
1525
1549
|
for j in range(self.nj):
|
1526
|
-
c =
|
1550
|
+
c = get_point(coords[j, ni], mode, centrum)
|
1527
1551
|
if np.any(np.isnan(c)):
|
1528
1552
|
continue
|
1529
1553
|
frontier[f_i] = c
|
1530
1554
|
f_i += 1
|
1531
1555
|
for i in range(self.ni, 0, -1):
|
1532
|
-
c =
|
1556
|
+
c = get_point(coords[nj, i], mode, centrum)
|
1533
1557
|
if np.any(np.isnan(c)):
|
1534
1558
|
continue
|
1535
1559
|
frontier[f_i] = c
|
1536
1560
|
f_i += 1
|
1537
1561
|
for j in range(self.nj, 0, -1):
|
1538
|
-
c =
|
1562
|
+
c = get_point(coords[j, 0], mode, centrum)
|
1539
1563
|
if np.any(np.isnan(c)):
|
1540
1564
|
continue
|
1541
1565
|
frontier[f_i] = c
|
@@ -1,4 +1,4 @@
|
|
1
|
-
resqpy/__init__.py,sha256=
|
1
|
+
resqpy/__init__.py,sha256=d1nzdII66YXpUle9nxQk72e6mUpfRERvOp5Sgif4LLE,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
|
@@ -34,7 +34,7 @@ resqpy/grid/_defined_geometry.py,sha256=QYQ3wLbPrlPobgUi9R1izTD4JD9qMGf5eyqbM68H
|
|
34
34
|
resqpy/grid/_extract_functions.py,sha256=pOVC2vv4dJ9G7e6p3uh2mz4QPb6W7_pKiaq8HAWeyzg,28263
|
35
35
|
resqpy/grid/_face_functions.py,sha256=0I7O6DDz7nJWczi_G2bE3L2XUr4acxREwKygXWEp6F4,16516
|
36
36
|
resqpy/grid/_faults.py,sha256=OmukVoLpdrndqDxwE6Rj7Ul5tj3FUQVPhE0raH2FHpg,12236
|
37
|
-
resqpy/grid/_grid.py,sha256=
|
37
|
+
resqpy/grid/_grid.py,sha256=d4hSTmtdfmuEiQIjOhSAAlJZNlYBf0Fui4PPGJE5I4U,136144
|
38
38
|
resqpy/grid/_grid_types.py,sha256=YAmRrrm-J2HKuuwCRCAkE3ppcQLiwc4EEc6dc-sy9Fc,4362
|
39
39
|
resqpy/grid/_intervals_info.py,sha256=ODjDz22n8U9pSpO0Muj8mJr2hYWauFDzgcVQ0RM3csQ,338
|
40
40
|
resqpy/grid/_moved_functions.py,sha256=XboxA0pE55j-P_x5g051WheVamxkAatQGbU5aq2GkaE,604
|
@@ -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.8.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
|
198
|
+
resqpy-4.18.8.dist-info/METADATA,sha256=uILBwqblu0BxmkJmbnNMugLsQLb11xcPAlkBj4BI1ec,4028
|
199
|
+
resqpy-4.18.8.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
200
|
+
resqpy-4.18.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|