resqpy 4.18.6__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/grid/_grid_types.py +22 -7
- resqpy/grid/_regular_grid.py +6 -2
- resqpy/unstructured/_hexa_grid.py +6 -2
- resqpy/unstructured/_prism_grid.py +12 -4
- resqpy/unstructured/_pyramid_grid.py +6 -2
- resqpy/unstructured/_tetra_grid.py +6 -2
- resqpy/unstructured/_unstructured_grid.py +6 -2
- {resqpy-4.18.6.dist-info → resqpy-4.18.8.dist-info}/METADATA +1 -1
- {resqpy-4.18.6.dist-info → resqpy-4.18.8.dist-info}/RECORD +13 -13
- {resqpy-4.18.6.dist-info → resqpy-4.18.8.dist-info}/LICENSE +0 -0
- {resqpy-4.18.6.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
|
resqpy/grid/_grid_types.py
CHANGED
@@ -51,13 +51,15 @@ def is_regular_grid(grid_root):
|
|
51
51
|
return grid_flavour(grid_root) == 'IjkBlockGrid'
|
52
52
|
|
53
53
|
|
54
|
-
def any_grid(parent_model, uuid = None, find_properties = True):
|
54
|
+
def any_grid(parent_model, uuid = None, find_properties = True, load_inactive = True):
|
55
55
|
"""Returns a Grid or RegularGrid or UnstructuredGrid object depending on the extra metadata in the xml.
|
56
56
|
|
57
57
|
arguments:
|
58
58
|
parent_model (Model): the model within which the grid exists
|
59
59
|
uuid (UUID): the uuid of the grid object to be instantiated
|
60
60
|
find_properties (bool, default True): passed onward to the instantiation method
|
61
|
+
load_inactive (bool, default True): if True and uuid is provided, the inactive attribubte is
|
62
|
+
populated if a property of kind 'active' is found for the grid
|
61
63
|
|
62
64
|
note:
|
63
65
|
full list of resqpy grid class objects which could be returned:
|
@@ -70,17 +72,30 @@ def any_grid(parent_model, uuid = None, find_properties = True):
|
|
70
72
|
if flavour is None:
|
71
73
|
return None
|
72
74
|
if flavour == 'IjkGrid':
|
73
|
-
return grr.Grid(parent_model, uuid = uuid, find_properties = find_properties)
|
75
|
+
return grr.Grid(parent_model, uuid = uuid, find_properties = find_properties, load_inactive = load_inactive)
|
74
76
|
if flavour == 'IjkBlockGrid':
|
75
|
-
return grr.RegularGrid(parent_model,
|
77
|
+
return grr.RegularGrid(parent_model,
|
78
|
+
extent_kji = None,
|
79
|
+
uuid = uuid,
|
80
|
+
find_properties = find_properties,
|
81
|
+
load_inactive = load_inactive)
|
76
82
|
if flavour == 'UnstructuredGrid':
|
77
|
-
return rug.UnstructuredGrid(parent_model,
|
83
|
+
return rug.UnstructuredGrid(parent_model,
|
84
|
+
uuid = uuid,
|
85
|
+
find_properties = find_properties,
|
86
|
+
load_inactive = load_inactive)
|
78
87
|
if flavour == 'TetraGrid':
|
79
|
-
return rug.TetraGrid(parent_model,
|
88
|
+
return rug.TetraGrid(parent_model,
|
89
|
+
uuid = uuid,
|
90
|
+
find_properties = find_properties,
|
91
|
+
load_inactive = load_inactive)
|
80
92
|
if flavour == 'HexaGrid':
|
81
|
-
return rug.HexaGrid(parent_model, uuid = uuid, find_properties = find_properties)
|
93
|
+
return rug.HexaGrid(parent_model, uuid = uuid, find_properties = find_properties, load_inactive = load_inactive)
|
82
94
|
if flavour == 'PyramidGrid':
|
83
95
|
return rug.PyramidGrid(parent_model, uuid = uuid, find_properties = find_properties)
|
84
96
|
if flavour == 'PrismGrid':
|
85
|
-
return rug.PrismGrid(parent_model,
|
97
|
+
return rug.PrismGrid(parent_model,
|
98
|
+
uuid = uuid,
|
99
|
+
find_properties = find_properties,
|
100
|
+
load_inactive = load_inactive)
|
86
101
|
return None
|
resqpy/grid/_regular_grid.py
CHANGED
@@ -46,7 +46,8 @@ class RegularGrid(grr_g.Grid):
|
|
46
46
|
find_properties = True,
|
47
47
|
title = None,
|
48
48
|
originator = None,
|
49
|
-
extra_metadata = {}
|
49
|
+
extra_metadata = {},
|
50
|
+
load_inactive = True):
|
50
51
|
"""Creates a regular grid object based on dxyz, or derived from a Mesh object.
|
51
52
|
|
52
53
|
arguments:
|
@@ -82,6 +83,8 @@ class RegularGrid(grr_g.Grid):
|
|
82
83
|
ignored if loading from xml
|
83
84
|
extra_metadata (dict, optional): dictionary of extra metadata items to add to the grid;
|
84
85
|
ignored if loading from xml
|
86
|
+
load_inactive (bool, default True): if True and uuid is provided, the inactive attribubte is
|
87
|
+
populated if a property of kind 'active' is found for the grid
|
85
88
|
|
86
89
|
returns:
|
87
90
|
a newly created RegularGrid object with inheritance from the Grid class
|
@@ -184,7 +187,8 @@ class RegularGrid(grr_g.Grid):
|
|
184
187
|
geometry_required = False,
|
185
188
|
title = title,
|
186
189
|
originator = originator,
|
187
|
-
extra_metadata = extra_metadata
|
190
|
+
extra_metadata = extra_metadata,
|
191
|
+
load_inactive = load_inactive)
|
188
192
|
|
189
193
|
self.geometry_defined_for_all_cells_cached = True
|
190
194
|
self.geometry_defined_for_all_pillars_cached = True
|
@@ -23,7 +23,8 @@ class HexaGrid(rug.UnstructuredGrid):
|
|
23
23
|
cache_geometry = False,
|
24
24
|
title = None,
|
25
25
|
originator = None,
|
26
|
-
extra_metadata = {}
|
26
|
+
extra_metadata = {},
|
27
|
+
load_inactive = True):
|
27
28
|
"""Creates a new resqpy HexaGrid object (RESQML UnstructuredGrid with cell shape hexahedral)
|
28
29
|
|
29
30
|
arguments:
|
@@ -39,6 +40,8 @@ class HexaGrid(rug.UnstructuredGrid):
|
|
39
40
|
ignored if uuid is present
|
40
41
|
extra_metadata (dict, optional): dictionary of extra metadata items to add to the grid;
|
41
42
|
ignored if uuid is present
|
43
|
+
load_inactive (bool, default True): if True and uuid is provided, the inactive attribubte is
|
44
|
+
populated if a property of kind 'active' is found for the grid
|
42
45
|
|
43
46
|
returns:
|
44
47
|
a newly created HexaGrid object
|
@@ -52,7 +55,8 @@ class HexaGrid(rug.UnstructuredGrid):
|
|
52
55
|
cell_shape = 'hexahedral',
|
53
56
|
title = title,
|
54
57
|
originator = originator,
|
55
|
-
extra_metadata = extra_metadata
|
58
|
+
extra_metadata = extra_metadata,
|
59
|
+
load_inactive = load_inactive)
|
56
60
|
|
57
61
|
if self.root is not None:
|
58
62
|
assert grr.grid_flavour(self.root) == 'HexaGrid'
|
@@ -34,7 +34,8 @@ class PrismGrid(rug.UnstructuredGrid):
|
|
34
34
|
cache_geometry = False,
|
35
35
|
title = None,
|
36
36
|
originator = None,
|
37
|
-
extra_metadata = {}
|
37
|
+
extra_metadata = {},
|
38
|
+
load_inactive = True):
|
38
39
|
"""Creates a new resqpy PrismGrid object (RESQML UnstructuredGrid with cell shape trisngular prism)
|
39
40
|
|
40
41
|
arguments:
|
@@ -50,6 +51,8 @@ class PrismGrid(rug.UnstructuredGrid):
|
|
50
51
|
ignored if uuid is present
|
51
52
|
extra_metadata (dict, optional): dictionary of extra metadata items to add to the grid;
|
52
53
|
ignored if uuid is present
|
54
|
+
load_inactive (bool, default True): if True and uuid is provided, the inactive attribubte is
|
55
|
+
populated if a property of kind 'active' is found for the grid
|
53
56
|
|
54
57
|
returns:
|
55
58
|
a newly created PrismGrid object
|
@@ -63,7 +66,8 @@ class PrismGrid(rug.UnstructuredGrid):
|
|
63
66
|
cell_shape = 'prism',
|
64
67
|
title = title,
|
65
68
|
originator = originator,
|
66
|
-
extra_metadata = extra_metadata
|
69
|
+
extra_metadata = extra_metadata,
|
70
|
+
load_inactive = load_inactive)
|
67
71
|
|
68
72
|
if self.root is not None:
|
69
73
|
assert grr.grid_flavour(self.root) in ['PrismGrid', 'VerticalPrismGrid']
|
@@ -110,7 +114,8 @@ class VerticalPrismGrid(PrismGrid):
|
|
110
114
|
cache_geometry = False,
|
111
115
|
title = None,
|
112
116
|
originator = None,
|
113
|
-
extra_metadata = {}
|
117
|
+
extra_metadata = {},
|
118
|
+
load_inactive = True):
|
114
119
|
"""Creates a new resqpy VerticalPrismGrid object.
|
115
120
|
|
116
121
|
arguments:
|
@@ -126,6 +131,8 @@ class VerticalPrismGrid(PrismGrid):
|
|
126
131
|
ignored if uuid is present
|
127
132
|
extra_metadata (dict, optional): dictionary of extra metadata items to add to the grid;
|
128
133
|
ignored if uuid is present
|
134
|
+
load_inactive (bool, default True): if True and uuid is provided, the inactive attribubte is
|
135
|
+
populated if a property of kind 'active' is found for the grid
|
129
136
|
|
130
137
|
returns:
|
131
138
|
a newly created VerticalPrismGrid object
|
@@ -139,7 +146,8 @@ class VerticalPrismGrid(PrismGrid):
|
|
139
146
|
cache_geometry = cache_geometry,
|
140
147
|
title = title,
|
141
148
|
originator = originator,
|
142
|
-
extra_metadata = extra_metadata
|
149
|
+
extra_metadata = extra_metadata,
|
150
|
+
load_inactive = load_inactive)
|
143
151
|
|
144
152
|
if self.root is not None:
|
145
153
|
assert grr.grid_flavour(self.root) in ['VerticalPrismGrid', 'PrismGrid']
|
@@ -22,7 +22,8 @@ class PyramidGrid(rug.UnstructuredGrid):
|
|
22
22
|
cache_geometry = False,
|
23
23
|
title = None,
|
24
24
|
originator = None,
|
25
|
-
extra_metadata = {}
|
25
|
+
extra_metadata = {},
|
26
|
+
load_inactive = True):
|
26
27
|
"""Creates a new resqpy PyramidGrid object (RESQML UnstructuredGrid with cell shape pyramidal)
|
27
28
|
|
28
29
|
arguments:
|
@@ -38,6 +39,8 @@ class PyramidGrid(rug.UnstructuredGrid):
|
|
38
39
|
ignored if uuid is present
|
39
40
|
extra_metadata (dict, optional): dictionary of extra metadata items to add to the grid;
|
40
41
|
ignored if uuid is present
|
42
|
+
load_inactive (bool, default True): if True and uuid is provided, the inactive attribubte is
|
43
|
+
populated if a property of kind 'active' is found for the grid
|
41
44
|
|
42
45
|
returns:
|
43
46
|
a newly created PyramidGrid object
|
@@ -51,7 +54,8 @@ class PyramidGrid(rug.UnstructuredGrid):
|
|
51
54
|
cell_shape = 'pyramidal',
|
52
55
|
title = title,
|
53
56
|
originator = originator,
|
54
|
-
extra_metadata = extra_metadata
|
57
|
+
extra_metadata = extra_metadata,
|
58
|
+
load_inactive = load_inactive)
|
55
59
|
|
56
60
|
if self.root is not None:
|
57
61
|
assert grr.grid_flavour(self.root) == 'PyramidGrid'
|
@@ -24,7 +24,8 @@ class TetraGrid(rug.UnstructuredGrid):
|
|
24
24
|
cache_geometry = False,
|
25
25
|
title = None,
|
26
26
|
originator = None,
|
27
|
-
extra_metadata = {}
|
27
|
+
extra_metadata = {},
|
28
|
+
load_inactive = True):
|
28
29
|
"""Creates a new resqpy TetraGrid object (RESQML UnstructuredGrid with cell shape tetrahedral)
|
29
30
|
|
30
31
|
arguments:
|
@@ -40,6 +41,8 @@ class TetraGrid(rug.UnstructuredGrid):
|
|
40
41
|
ignored if uuid is present
|
41
42
|
extra_metadata (dict, optional): dictionary of extra metadata items to add to the grid;
|
42
43
|
ignored if uuid is present
|
44
|
+
load_inactive (bool, default True): if True and uuid is provided, the inactive attribubte is
|
45
|
+
populated if a property of kind 'active' is found for the grid
|
43
46
|
|
44
47
|
returns:
|
45
48
|
a newly created TetraGrid object
|
@@ -53,7 +56,8 @@ class TetraGrid(rug.UnstructuredGrid):
|
|
53
56
|
cell_shape = 'tetrahedral',
|
54
57
|
title = title,
|
55
58
|
originator = originator,
|
56
|
-
extra_metadata = extra_metadata
|
59
|
+
extra_metadata = extra_metadata,
|
60
|
+
load_inactive = load_inactive)
|
57
61
|
|
58
62
|
if self.root is not None:
|
59
63
|
assert grr.grid_flavour(self.root) == 'TetraGrid'
|
@@ -35,7 +35,8 @@ class UnstructuredGrid(BaseResqpy):
|
|
35
35
|
cell_shape = 'polyhedral',
|
36
36
|
title = None,
|
37
37
|
originator = None,
|
38
|
-
extra_metadata = {}
|
38
|
+
extra_metadata = {},
|
39
|
+
load_inactive = True):
|
39
40
|
"""Create an Unstructured Grid object and optionally populate from xml tree.
|
40
41
|
|
41
42
|
arguments:
|
@@ -55,6 +56,8 @@ class UnstructuredGrid(BaseResqpy):
|
|
55
56
|
ignored if uuid is present
|
56
57
|
extra_metadata (dict, optional): dictionary of extra metadata items to add to the grid;
|
57
58
|
ignored if uuid is present
|
59
|
+
load_inactive (bool, default True): if True and uuid is provided, the inactive attribubte is
|
60
|
+
populated if a property of kind 'active' is found for the grid
|
58
61
|
|
59
62
|
returns:
|
60
63
|
a newly created Unstructured Grid object
|
@@ -103,6 +106,8 @@ class UnstructuredGrid(BaseResqpy):
|
|
103
106
|
self.title = 'ROOT'
|
104
107
|
|
105
108
|
if uuid is not None:
|
109
|
+
if load_inactive:
|
110
|
+
self.extract_inactive_mask()
|
106
111
|
if geometry_required:
|
107
112
|
assert self.geometry_root is not None, 'unstructured grid geometry not present in xml'
|
108
113
|
if cache_geometry and self.geometry_root is not None:
|
@@ -127,7 +132,6 @@ class UnstructuredGrid(BaseResqpy):
|
|
127
132
|
assert self.node_count > 3
|
128
133
|
self.face_count = rqet.find_tag_int(self.geometry_root, 'FaceCount')
|
129
134
|
assert self.face_count > 3
|
130
|
-
self.extract_inactive_mask()
|
131
135
|
# note: geometry arrays not loaded until demanded; see cache_all_geometry_arrays()
|
132
136
|
|
133
137
|
def set_cell_count(self, n: int):
|
@@ -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,14 +34,14 @@ 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=
|
38
|
-
resqpy/grid/_grid_types.py,sha256=
|
37
|
+
resqpy/grid/_grid.py,sha256=d4hSTmtdfmuEiQIjOhSAAlJZNlYBf0Fui4PPGJE5I4U,136144
|
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
|
41
41
|
resqpy/grid/_pillars.py,sha256=WXvLjORlNHnm0KI3qgoRtCyXdcT9vQBkJDQWL2wtJwg,7243
|
42
42
|
resqpy/grid/_pixel_maps.py,sha256=Aqn9dpDKjX_v8BnWMdN__ulqjeuXfE6W2_Z7EDaUqdE,5386
|
43
43
|
resqpy/grid/_points_functions.py,sha256=72dCLWHrOUM9xSwSaEuxPUA__b6WAdk5rbeWatILdaI,70585
|
44
|
-
resqpy/grid/_regular_grid.py,sha256=
|
44
|
+
resqpy/grid/_regular_grid.py,sha256=5TzyD82S3K0H2zfBXHcGpOODmwc4X28WAUqgZ2kHCLc,46038
|
45
45
|
resqpy/grid/_transmissibility.py,sha256=cLtuVaLgBQqRXa-_YQ5mjR_QC842Jxn2d-Hl6171yOY,22575
|
46
46
|
resqpy/grid/_write_hdf5_from_caches.py,sha256=s3gcoilsFCCSw_wjnTjWe1xMHEWr_cessoGVgzqiqVI,9707
|
47
47
|
resqpy/grid/_write_nexus_corp.py,sha256=yEVfiObsedEAXX6UG6ZTf56kZnQVkd3lLqE2NpL-KBM,6147
|
@@ -175,11 +175,11 @@ resqpy/time_series/_geologic_time_series.py,sha256=-4oMxE0R_ZEqyxb9qckawiHS0SJ-r
|
|
175
175
|
resqpy/time_series/_time_duration.py,sha256=bzRf0fynlB68KUYKa0Ih7qwd4ZJnRjl_Y6AxgX7LAsM,2759
|
176
176
|
resqpy/time_series/_time_series.py,sha256=ceCuFbmYmppx0jBitdyjtSKkcLxjZ-qyhFN_HQX-3CQ,10818
|
177
177
|
resqpy/unstructured/__init__.py,sha256=8te-ghWhkDGe0QaLDClvVEkSMtnDtX46K1QODmJU8Xw,603
|
178
|
-
resqpy/unstructured/_hexa_grid.py,sha256=
|
179
|
-
resqpy/unstructured/_prism_grid.py,sha256=
|
180
|
-
resqpy/unstructured/_pyramid_grid.py,sha256=
|
181
|
-
resqpy/unstructured/_tetra_grid.py,sha256=
|
182
|
-
resqpy/unstructured/_unstructured_grid.py,sha256=
|
178
|
+
resqpy/unstructured/_hexa_grid.py,sha256=M22p_5nysAgF8zlqr3WPjwB5hYD6BzVu7XE99yG_hvs,15604
|
179
|
+
resqpy/unstructured/_prism_grid.py,sha256=pTckhCQZVbqzJ7eDU9KOauujer0F-9XOHEcCrqy9eMQ,36408
|
180
|
+
resqpy/unstructured/_pyramid_grid.py,sha256=dmukk_jlKktjfMEyfCMTpgG3hz3mZFo0O84vSWHxN-M,8138
|
181
|
+
resqpy/unstructured/_tetra_grid.py,sha256=awF9JKI3ws2VXKa_xPZkn8AXLdIsCWrM3HL7CeO6u_U,12729
|
182
|
+
resqpy/unstructured/_unstructured_grid.py,sha256=7DSsywdeTAkhM2Vl4_Yk6aMbb20sgEy5PUmqM5sSyVE,51808
|
183
183
|
resqpy/weights_and_measures/__init__.py,sha256=Kp1pPZFH4rS5_PkCERZBEzGoat6n_dSS0y_KLhuIVBM,1135
|
184
184
|
resqpy/weights_and_measures/nexus_units.py,sha256=pHqcFbe-8nyqozFgN5Ce-W-UvEnXQ6yiaX3dP1ONtAQ,5434
|
185
185
|
resqpy/weights_and_measures/weights_and_measures.py,sha256=1WnrmhtcyCgY2crClNddmfwtf33JdVZy9wNhqPQIvuc,16210
|
@@ -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
|