resqpy 5.1.9__py3-none-any.whl → 5.1.10__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/olio/zmap_reader.py +18 -3
- {resqpy-5.1.9.dist-info → resqpy-5.1.10.dist-info}/METADATA +1 -1
- {resqpy-5.1.9.dist-info → resqpy-5.1.10.dist-info}/RECORD +6 -6
- {resqpy-5.1.9.dist-info → resqpy-5.1.10.dist-info}/WHEEL +1 -1
- {resqpy-5.1.9.dist-info → resqpy-5.1.10.dist-info}/LICENSE +0 -0
resqpy/__init__.py
CHANGED
resqpy/olio/zmap_reader.py
CHANGED
@@ -7,6 +7,7 @@ import logging
|
|
7
7
|
log = logging.getLogger(__name__)
|
8
8
|
|
9
9
|
import numpy as np
|
10
|
+
import resqpy.olio.vector_utilities as vec
|
10
11
|
|
11
12
|
|
12
13
|
def read_zmap_header(inputfile):
|
@@ -72,7 +73,7 @@ def read_roxar_header(inputfile):
|
|
72
73
|
"""Reads header lines from a roxar format file.
|
73
74
|
|
74
75
|
returns:
|
75
|
-
header_lines_count, no_rows, no_cols, minx, maxx, miny, maxy, null_value
|
76
|
+
header_lines_count, no_rows, no_cols, minx, maxx, miny, maxy, null_value, rotation, originx, originy
|
76
77
|
"""
|
77
78
|
|
78
79
|
with open(inputfile, 'r') as fp:
|
@@ -88,9 +89,12 @@ def read_roxar_header(inputfile):
|
|
88
89
|
maxy = float(words[3])
|
89
90
|
words = fp.readline().split()
|
90
91
|
no_cols = int(words[0])
|
92
|
+
rotation = float(words[1])
|
93
|
+
originx = float(words[2])
|
94
|
+
originy = float(words[3])
|
91
95
|
headers = 4
|
92
96
|
null_value = '9999900.0000'
|
93
|
-
return headers, no_rows, no_cols, minx, maxx, miny, maxy, null_value
|
97
|
+
return headers, no_rows, no_cols, minx, maxx, miny, maxy, null_value, rotation, originx, originy
|
94
98
|
|
95
99
|
|
96
100
|
def read_mesh(inputfile, dtype = np.float64, format = None):
|
@@ -103,7 +107,8 @@ def read_mesh(inputfile, dtype = np.float64, format = None):
|
|
103
107
|
if format == 'zmap':
|
104
108
|
headers, no_rows, no_cols, minx, maxx, miny, maxy, null_value = read_zmap_header(inputfile)
|
105
109
|
elif format in ['rms', 'roxar']:
|
106
|
-
headers, no_rows, no_cols, minx, maxx, miny, maxy, null_value = read_roxar_header(
|
110
|
+
headers, no_rows, no_cols, minx, maxx, miny, maxy, null_value, rotation, originx, originy = read_roxar_header(
|
111
|
+
inputfile)
|
107
112
|
else:
|
108
113
|
raise ValueError('format not recognised for read_mesh: ' + str(format))
|
109
114
|
# load the values in, converting null value to NaN's
|
@@ -143,6 +148,16 @@ def read_mesh(inputfile, dtype = np.float64, format = None):
|
|
143
148
|
else: # format in ['rms', 'roxar']
|
144
149
|
y = np.linspace(miny, maxy, no_rows)
|
145
150
|
x, y = np.meshgrid(x, y) # get x and y of every node
|
151
|
+
if format in ['rms', 'roxar']:
|
152
|
+
if rotation != 0.0:
|
153
|
+
unrot = np.empty(shape = [no_rows, no_cols, 3])
|
154
|
+
unrot[:, :, 0] = x - originx
|
155
|
+
unrot[:, :, 1] = y - originy
|
156
|
+
matrix = vec.rotation_matrix_3d_axial(2, rotation)
|
157
|
+
rot = vec.rotate_array(matrix, unrot)
|
158
|
+
x = rot[:, :, 0] + originx
|
159
|
+
y = rot[:, :, 1] + originy
|
160
|
+
|
146
161
|
assert x.shape == y.shape == f.shape
|
147
162
|
|
148
163
|
return x, y, f
|
@@ -1,4 +1,4 @@
|
|
1
|
-
resqpy/__init__.py,sha256=
|
1
|
+
resqpy/__init__.py,sha256=WzNNz7f6bGpTRb2e9rAZACnOvxMITQPQp7hbHOkuzAA,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
|
@@ -104,7 +104,7 @@ resqpy/olio/write_data.py,sha256=bIX7ilMkXWCMz_zQh-Gqk56sNzng4W5l4BahW2EV7Kw,514
|
|
104
104
|
resqpy/olio/write_hdf5.py,sha256=iUIYPWlbJsSSq9UXXiXAW_S6TeK-N2M7QvlJJE43EK8,19015
|
105
105
|
resqpy/olio/xml_et.py,sha256=aPjxr2XWvYcwlnckL_UiZmd5EGEoIfy_JxeOKOk3vwQ,25322
|
106
106
|
resqpy/olio/xml_namespaces.py,sha256=PiQi2W7gRLxhMSEs26ahT4MlagYqsjMWJlNpIiZupoA,1824
|
107
|
-
resqpy/olio/zmap_reader.py,sha256=
|
107
|
+
resqpy/olio/zmap_reader.py,sha256=pVQUDk4gY9MtAqNZFOo2J9-CPO70qS6RH-OzJmmBf1c,6349
|
108
108
|
resqpy/organize/__init__.py,sha256=H1c7B4aRJf5peaGUTvGrCVug4Xr_JW38zeWL-LyCDtk,2206
|
109
109
|
resqpy/organize/_utils.py,sha256=p1ec0ytUv8X4SFn0cCp5g-aWjucNR7xKQEwkcMOyHYM,2937
|
110
110
|
resqpy/organize/boundary_feature.py,sha256=AqSTtYpEKBXgkggzETbl61PhtdatIEFwXkzcrqRlj0A,1685
|
@@ -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.10.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
|
197
|
+
resqpy-5.1.10.dist-info/METADATA,sha256=CXqpWAWxAExImRo2QYl94u0SoHJWvxwy4k7YOBy3qek,3987
|
198
|
+
resqpy-5.1.10.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
199
|
+
resqpy-5.1.10.dist-info/RECORD,,
|
File without changes
|