xtgeo 4.12.1__cp310-cp310-macosx_11_0_arm64.whl → 4.13.1__cp310-cp310-macosx_11_0_arm64.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.
Potentially problematic release.
This version of xtgeo might be problematic. Click here for more details.
- cxtgeo.py +0 -18
- cxtgeoPYTHON_wrap.c +0 -843
- xtgeo/_cxtgeo.cpython-310-darwin.so +0 -0
- xtgeo/_internal.cpython-310-darwin.so +0 -0
- xtgeo/common/version.py +3 -3
- xtgeo/cube/_cube_window_attributes.py +53 -129
- xtgeo/grid3d/_ecl_inte_head.py +6 -2
- xtgeo/grid3d/_grid_etc1.py +70 -60
- xtgeo/grid3d/_grid_hybrid.py +13 -29
- xtgeo/grid3d/_grid_translate_coords.py +154 -0
- xtgeo/grid3d/_gridprop_roxapi.py +8 -2
- xtgeo/grid3d/grid.py +85 -18
- xtgeo/io/_file.py +1 -1
- xtgeo/lib/libfmt.a +0 -0
- xtgeo/lib/pkgconfig/fmt.pc +2 -2
- xtgeo/metadata/metadata.py +49 -52
- xtgeo/surface/_regsurf_oper.py +1 -94
- xtgeo/surface/regular_surface.py +4 -9
- xtgeo/well/_blockedwell_roxapi.py +24 -4
- xtgeo/xyz/_xyz_io.py +7 -5
- xtgeo/xyz/points.py +1 -0
- {xtgeo-4.12.1.dist-info → xtgeo-4.13.1.dist-info}/METADATA +2 -1
- {xtgeo-4.12.1.dist-info → xtgeo-4.13.1.dist-info}/RECORD +25 -24
- {xtgeo-4.12.1.dist-info → xtgeo-4.13.1.dist-info}/WHEEL +0 -0
- {xtgeo-4.12.1.dist-info → xtgeo-4.13.1.dist-info}/licenses/LICENSE.md +0 -0
xtgeo/surface/_regsurf_oper.py
CHANGED
|
@@ -448,99 +448,6 @@ def _get_randomline_fence(self, fencespec, hincrement, atleast, nextend):
|
|
|
448
448
|
return fspec
|
|
449
449
|
|
|
450
450
|
|
|
451
|
-
def operation_polygons(self, poly, value, opname="add", inside=True):
|
|
452
|
-
"""Operations restricted to polygons"""
|
|
453
|
-
|
|
454
|
-
# keep this for a while (e.g. mid 2024), and then replace it with _v2 below.
|
|
455
|
-
if not isinstance(poly, Polygons):
|
|
456
|
-
raise ValueError("The poly input is not a Polygons instance")
|
|
457
|
-
if opname not in VALID_OPER_POLYS:
|
|
458
|
-
raise ValueError(f"Operation key opname has invalid value: {opname}")
|
|
459
|
-
|
|
460
|
-
# make a copy of the RegularSurface which is used a "filter" or "proxy"
|
|
461
|
-
# value will be 1 inside polygons, 0 outside. Undef cells are kept as is
|
|
462
|
-
|
|
463
|
-
proxy = self.copy()
|
|
464
|
-
proxy.values *= 0.0
|
|
465
|
-
vals = proxy.get_values1d(fill_value=UNDEF)
|
|
466
|
-
|
|
467
|
-
# value could be a scalar or another surface; if another surface,
|
|
468
|
-
# must ensure same topology
|
|
469
|
-
|
|
470
|
-
if isinstance(value, type(self)):
|
|
471
|
-
if not self.compare_topology(value):
|
|
472
|
-
raise ValueError("Input is RegularSurface, but not same map topology")
|
|
473
|
-
value = value.values.copy()
|
|
474
|
-
else:
|
|
475
|
-
# turn scalar value into numpy array
|
|
476
|
-
value = self.values.copy() * 0 + value
|
|
477
|
-
|
|
478
|
-
idgroups = poly.get_dataframe(copy=False).groupby(poly.pname)
|
|
479
|
-
|
|
480
|
-
for _, grp in idgroups:
|
|
481
|
-
xcor = grp[poly.xname].values
|
|
482
|
-
ycor = grp[poly.yname].values
|
|
483
|
-
|
|
484
|
-
ier = _cxtgeo.surf_setval_poly(
|
|
485
|
-
proxy.xori,
|
|
486
|
-
proxy.xinc,
|
|
487
|
-
proxy.yori,
|
|
488
|
-
proxy.yinc,
|
|
489
|
-
proxy.ncol,
|
|
490
|
-
proxy.nrow,
|
|
491
|
-
proxy.yflip,
|
|
492
|
-
proxy.rotation,
|
|
493
|
-
vals,
|
|
494
|
-
xcor,
|
|
495
|
-
ycor,
|
|
496
|
-
1.0,
|
|
497
|
-
0,
|
|
498
|
-
)
|
|
499
|
-
if ier == -9:
|
|
500
|
-
xtg.warn("Polygon is not closed")
|
|
501
|
-
|
|
502
|
-
proxy.set_values1d(vals)
|
|
503
|
-
proxyv = proxy.values.astype(np.int8)
|
|
504
|
-
|
|
505
|
-
proxytarget = 1
|
|
506
|
-
if not inside:
|
|
507
|
-
proxytarget = 0
|
|
508
|
-
|
|
509
|
-
tmp = None
|
|
510
|
-
if opname == "add":
|
|
511
|
-
tmp = self.values.copy() + value
|
|
512
|
-
elif opname == "sub":
|
|
513
|
-
tmp = self.values.copy() - value
|
|
514
|
-
elif opname == "mul":
|
|
515
|
-
tmp = self.values.copy() * value
|
|
516
|
-
elif opname == "div":
|
|
517
|
-
# Dividing a map of zero is always a hazzle; try to obtain 0.0
|
|
518
|
-
# as result in these cases
|
|
519
|
-
if 0.0 in value:
|
|
520
|
-
xtg.warn(
|
|
521
|
-
"Dividing a surface with value=0.0 or surface with zero "
|
|
522
|
-
"elements; may get unexpected results, try to "
|
|
523
|
-
"achieve zero values as result!"
|
|
524
|
-
)
|
|
525
|
-
with np.errstate(divide="ignore", invalid="ignore"):
|
|
526
|
-
this = ma.filled(self.values, fill_value=1.0)
|
|
527
|
-
that = ma.filled(value, fill_value=1.0)
|
|
528
|
-
mask = ma.getmaskarray(self.values)
|
|
529
|
-
tmp = np.true_divide(this, that)
|
|
530
|
-
tmp = np.where(np.isinf(tmp), 0, tmp)
|
|
531
|
-
tmp = np.nan_to_num(tmp)
|
|
532
|
-
tmp = ma.array(tmp, mask=mask)
|
|
533
|
-
|
|
534
|
-
elif opname == "set":
|
|
535
|
-
tmp = value
|
|
536
|
-
elif opname == "eli":
|
|
537
|
-
tmp = value * 0 + UNDEF
|
|
538
|
-
tmp = ma.masked_greater(tmp, UNDEF_LIMIT)
|
|
539
|
-
|
|
540
|
-
self.values[proxyv == proxytarget] = tmp[proxyv == proxytarget]
|
|
541
|
-
del tmp
|
|
542
|
-
|
|
543
|
-
|
|
544
451
|
def _proxy_map_polygons(surf, poly, inside=True):
|
|
545
452
|
"""Return a proxy map where on one to do operations, as 0 and 1."""
|
|
546
453
|
inside_value = 1 if inside else 0
|
|
@@ -574,7 +481,7 @@ def _proxy_map_polygons(surf, poly, inside=True):
|
|
|
574
481
|
return proxy
|
|
575
482
|
|
|
576
483
|
|
|
577
|
-
def
|
|
484
|
+
def operation_polygons(self, poly, value: float | Any, opname="add", inside=True):
|
|
578
485
|
"""Operations restricted to polygons, using matplotlib (much faster).
|
|
579
486
|
|
|
580
487
|
The 'value' can be a number or another regular surface (with same design)
|
xtgeo/surface/regular_surface.py
CHANGED
|
@@ -1883,7 +1883,7 @@ class RegularSurface:
|
|
|
1883
1883
|
# Operations restricted to inside/outside polygons
|
|
1884
1884
|
# ==================================================================================
|
|
1885
1885
|
|
|
1886
|
-
def operation_polygons(self, poly, value, opname="add", inside=True
|
|
1886
|
+
def operation_polygons(self, poly, value, opname="add", inside=True):
|
|
1887
1887
|
"""A generic function for map operations inside or outside polygon(s).
|
|
1888
1888
|
|
|
1889
1889
|
Args:
|
|
@@ -1895,14 +1895,9 @@ class RegularSurface:
|
|
|
1895
1895
|
on polygons (this key will be removed in later versions and shall not
|
|
1896
1896
|
be applied)
|
|
1897
1897
|
"""
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
)
|
|
1902
|
-
else:
|
|
1903
|
-
_regsurf_oper.operation_polygons(
|
|
1904
|
-
self, poly, value, opname=opname, inside=inside
|
|
1905
|
-
)
|
|
1898
|
+
_regsurf_oper.operation_polygons(
|
|
1899
|
+
self, poly, value, opname=opname, inside=inside
|
|
1900
|
+
)
|
|
1906
1901
|
|
|
1907
1902
|
# shortforms
|
|
1908
1903
|
def add_inside(self, poly, value):
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"""Blocked Well input and output, private module for ROXAPI"""
|
|
2
2
|
|
|
3
|
+
import warnings
|
|
4
|
+
|
|
3
5
|
import numpy as np
|
|
4
6
|
import numpy.ma as npma
|
|
5
7
|
import pandas as pd
|
|
@@ -191,7 +193,6 @@ def _roxapi_export_bwell(self, rox, gname, bwname, wname, lognames, ijk, realisa
|
|
|
191
193
|
else:
|
|
192
194
|
bwlog = bwprops[lname]
|
|
193
195
|
bwprop = bwlog.get_values(realisation=realisation)
|
|
194
|
-
|
|
195
196
|
usedtype = bwprop.dtype
|
|
196
197
|
dind = bwset.get_data_indices([self._wname], realisation=realisation)
|
|
197
198
|
|
|
@@ -199,9 +200,28 @@ def _roxapi_export_bwell(self, rox, gname, bwname, wname, lognames, ijk, realisa
|
|
|
199
200
|
raise ValueError(
|
|
200
201
|
"Dataframe is of wrong size, changing numbers of rows is not possible"
|
|
201
202
|
)
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
203
|
+
|
|
204
|
+
# Get the values
|
|
205
|
+
values = self.get_dataframe(copy=False)[lname].values
|
|
206
|
+
|
|
207
|
+
# Create masked array first, then handle casting
|
|
208
|
+
masked_values = np.ma.masked_invalid(values)
|
|
209
|
+
|
|
210
|
+
# Handle casting based on target type
|
|
211
|
+
if np.issubdtype(usedtype, np.integer):
|
|
212
|
+
# For integer types, suppress the warning and handle invalid values
|
|
213
|
+
with warnings.catch_warnings():
|
|
214
|
+
warnings.filterwarnings(
|
|
215
|
+
"ignore", "invalid value encountered in cast", RuntimeWarning
|
|
216
|
+
)
|
|
217
|
+
# Fill masked values with a valid integer before casting
|
|
218
|
+
filled_values = np.ma.filled(masked_values, fill_value=0)
|
|
219
|
+
cast_values = filled_values.astype(usedtype)
|
|
220
|
+
# Recreate the masked array with the original mask
|
|
221
|
+
maskedvalues = np.ma.masked_array(cast_values, mask=masked_values.mask)
|
|
222
|
+
else:
|
|
223
|
+
# For float types, direct cast is fine
|
|
224
|
+
maskedvalues = masked_values.astype(usedtype)
|
|
205
225
|
|
|
206
226
|
# there are cases where the RMS API complains on the actual value of the masked
|
|
207
227
|
# array being outside range; hence remedy is to set 'data' value to a usedtype
|
xtgeo/xyz/_xyz_io.py
CHANGED
|
@@ -288,15 +288,17 @@ def import_rms_attr(pfile, zname="Z_TVDSS"):
|
|
|
288
288
|
names=names,
|
|
289
289
|
dtype=dtypes,
|
|
290
290
|
)
|
|
291
|
+
|
|
291
292
|
for col in dfr.columns[3:]:
|
|
292
293
|
if col in _attrs:
|
|
293
|
-
#
|
|
294
|
-
# previously a string to a float/int.
|
|
294
|
+
# avoid FutureWarning by not using .replace() for mixed dtypes
|
|
295
295
|
if _attrs[col] == "float":
|
|
296
|
-
|
|
296
|
+
s = dfr[col].mask(dfr[col] == "UNDEF", UNDEF)
|
|
297
|
+
dfr[col] = pd.to_numeric(s, errors="coerce").astype(float)
|
|
297
298
|
elif _attrs[col] == "int":
|
|
298
|
-
|
|
299
|
-
|
|
299
|
+
s = dfr[col].mask(dfr[col] == "UNDEF", UNDEF_INT)
|
|
300
|
+
s = pd.to_numeric(s, errors="coerce").fillna(UNDEF_INT).astype(int)
|
|
301
|
+
dfr[col] = s
|
|
300
302
|
# cast to numerical if possible
|
|
301
303
|
with contextlib.suppress(ValueError, TypeError):
|
|
302
304
|
dfr[col] = pd.to_numeric(dfr[col])
|
xtgeo/xyz/points.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: xtgeo
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.13.1
|
|
4
4
|
Summary: XTGeo is a Python library for 3D grids, surfaces, wells, etc
|
|
5
5
|
Keywords: grids,surfaces,wells,cubes
|
|
6
6
|
Author-Email: Equinor <fg_fmu-atlas@equinor.com>
|
|
@@ -50,6 +50,7 @@ Requires-Dist: coverage>=4.1; extra == "dev"
|
|
|
50
50
|
Requires-Dist: hypothesis; extra == "dev"
|
|
51
51
|
Requires-Dist: mypy; extra == "dev"
|
|
52
52
|
Requires-Dist: pandas-stubs; extra == "dev"
|
|
53
|
+
Requires-Dist: psutil; extra == "dev"
|
|
53
54
|
Requires-Dist: pydocstyle; extra == "dev"
|
|
54
55
|
Requires-Dist: pytest; extra == "dev"
|
|
55
56
|
Requires-Dist: pytest-benchmark; extra == "dev"
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
cxtgeo.py,sha256=
|
|
2
|
-
cxtgeoPYTHON_wrap.c,sha256=
|
|
3
|
-
xtgeo-4.
|
|
4
|
-
xtgeo-4.
|
|
5
|
-
xtgeo-4.
|
|
6
|
-
xtgeo-4.
|
|
1
|
+
cxtgeo.py,sha256=4amlL5oTh0HSjlf4Wfra6KNFRhybM2jh_p6mBcOGdAU,31614
|
|
2
|
+
cxtgeoPYTHON_wrap.c,sha256=jNATLn9NEKglrud75J9k9wq-HxYPJ6m4U50h2ei00Ec,610361
|
|
3
|
+
xtgeo-4.13.1.dist-info/RECORD,,
|
|
4
|
+
xtgeo-4.13.1.dist-info/WHEEL,sha256=ARvpZEbgFu-cAxZINNemqHWSYlsYgHkQqksAmhPJqFw,141
|
|
5
|
+
xtgeo-4.13.1.dist-info/METADATA,sha256=20bqQS_a1pJsjxiMvqiW71i8Mv-k8gaMNxHxlF8dzgs,5779
|
|
6
|
+
xtgeo-4.13.1.dist-info/licenses/LICENSE.md,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
|
|
7
7
|
xtgeo/__init__.py,sha256=-p6vKOv7EfAt1S-7CmWHfN8iHjFHQ--5UwhIysS_gRQ,5588
|
|
8
|
-
xtgeo/_internal.cpython-310-darwin.so,sha256=
|
|
9
|
-
xtgeo/_cxtgeo.cpython-310-darwin.so,sha256=
|
|
8
|
+
xtgeo/_internal.cpython-310-darwin.so,sha256=9l277nhdCeXvANROYk6DzD7gpDj_e5J8zII8NaimTEA,797696
|
|
9
|
+
xtgeo/_cxtgeo.cpython-310-darwin.so,sha256=iAkU9YRJdxWKtTtIUP1Hg6eLByCF7NVckYFG6khoTxo,398000
|
|
10
10
|
xtgeo/well/_wells_utils.py,sha256=hjJEBdtILtK87sbCYWHJ7aEgqgKkak6ihfOcxSixNPo,4945
|
|
11
|
-
xtgeo/well/_blockedwell_roxapi.py,sha256=
|
|
11
|
+
xtgeo/well/_blockedwell_roxapi.py,sha256=J17-lKccvTZBuW5_aUz5lfa5W5lW7pYIw1MvGeQ9lQ0,8421
|
|
12
12
|
xtgeo/well/_well_io.py,sha256=CHvLfuIVNoX_4PQd7sCWg5xvyCd1L73J5dkmV2uaJqU,9821
|
|
13
13
|
xtgeo/well/well1.py,sha256=gUODmEw-QOQtDHVI-qPUhK8RnglASso1l2EIvQvaOng,51125
|
|
14
14
|
xtgeo/well/__init__.py,sha256=2OjMYXXBSTZmsJgF0TrKMX01hMwT3dt2yLXhz5gL3D4,591
|
|
@@ -36,13 +36,14 @@ xtgeo/include/fmt/std.h,sha256=ogzbgTUxCUFupDozCWAG0yMhWeiV6QtkEbaR0p9jR8A,22277
|
|
|
36
36
|
xtgeo/include/fmt/base.h,sha256=E8jZU_stmNyVUondFmmZvSLbq_66f0hrNpPCxtnWJ9s,103990
|
|
37
37
|
xtgeo/grid3d/_grid_import.py,sha256=T--Nk4CVKifCskc2i8y6cpFXV2LZdTmJC3iSxKXXiZE,2593
|
|
38
38
|
xtgeo/grid3d/_roff_parameter.py,sha256=UNS2cngVP3GIAr5nVCoGQYJq062KtfvCAkFb0FEJY68,11073
|
|
39
|
-
xtgeo/grid3d/grid.py,sha256=
|
|
39
|
+
xtgeo/grid3d/grid.py,sha256=uofkY5M8qVzmqNdiU6kCTSBUq-49RpLPXBbebJovwJw,109811
|
|
40
40
|
xtgeo/grid3d/_grid_boundary.py,sha256=oxWmQdy9cG1PzAtOH-IcCqAQYfmIwTD87tc-c4VgTA8,2308
|
|
41
41
|
xtgeo/grid3d/_grid_import_ecl.py,sha256=gIcX4uMnwg0UnYMXyUdJsFSNKV-yhLFtc88AL1fmx6Y,3453
|
|
42
|
-
xtgeo/grid3d/_gridprop_roxapi.py,sha256=
|
|
42
|
+
xtgeo/grid3d/_gridprop_roxapi.py,sha256=Z2A0Xv7Y_umy8joI__5YL7GsZ6NctaBakfn6serGks4,9093
|
|
43
43
|
xtgeo/grid3d/_gridprop_op1.py,sha256=o0JemRzyECX0qzUpj9OXGB9nb1IOZ8-5Gs-1i_a302g,8956
|
|
44
44
|
xtgeo/grid3d/_grid_import_roff.py,sha256=UViMnU44b75x4EfgnEmUYLFTK0R33lS9wAw0aBgzVzw,4039
|
|
45
|
-
xtgeo/grid3d/
|
|
45
|
+
xtgeo/grid3d/_grid_translate_coords.py,sha256=UDHoOtH9v2oMXh-6_Vyh_4R1lOFESgpOC3BjrP8fRP8,4696
|
|
46
|
+
xtgeo/grid3d/_grid_hybrid.py,sha256=N7l2l96AGnKNLvaqhuVUMX0Nhk4rTy2v0V9cj_FSbuA,1255
|
|
46
47
|
xtgeo/grid3d/_grid3d_fence.py,sha256=XdIY-TlSgoTuRtRyRNqLvXLoR9F1QTEkFJO-rgKlqwE,9217
|
|
47
48
|
xtgeo/grid3d/_grid3d.py,sha256=eM6842v2Q1Sb75zM3KynCITeV57OlXcusGEa_NWLPSU,740
|
|
48
49
|
xtgeo/grid3d/_ecl_output_file.py,sha256=WPb7VGPyt89MpKtxL2jLoSKwn04jIfNsB11L-9wMhSY,2014
|
|
@@ -52,7 +53,7 @@ xtgeo/grid3d/_roff_grid.py,sha256=Or-QR92AB_oE-6lbMVhQjXC_E1HAcxZjFlbep3cFo6w,17
|
|
|
52
53
|
xtgeo/grid3d/__init__.py,sha256=k6T-xKWIBey_WMjWDnYZfvCsLQGokCL9RjqBZNvbUq0,332
|
|
53
54
|
xtgeo/grid3d/types.py,sha256=s4iR1hmpZ_mF7xLXqujZaT2Sa6RK0uA48ZywBmkjoD0,275
|
|
54
55
|
xtgeo/grid3d/_grid_export.py,sha256=2Idg_5OGwS3Swu992RqYovDHBxfakjphN6ozKnDU1V0,7270
|
|
55
|
-
xtgeo/grid3d/_ecl_inte_head.py,sha256=
|
|
56
|
+
xtgeo/grid3d/_ecl_inte_head.py,sha256=yz8oQXCPzITNYNguZe9pUYVM2UbI6ZBy_e7VAEYJ8vU,4749
|
|
56
57
|
xtgeo/grid3d/_gridprop_import_eclrun.py,sha256=k1SjOp4PmZ3nIcDM6N-2FDvDx3jMPf7rea3IGOrgo88,5096
|
|
57
58
|
xtgeo/grid3d/_grid3d_utils.py,sha256=zIQZpWqAf33nVpC2aDqquPhd7Tqr-rRZvAaXPF-kxG0,7249
|
|
58
59
|
xtgeo/grid3d/_ecl_grid.py,sha256=f12-cvxZblUZSAGIxKxJ438akK5gBFYebgSbVxZP6Jc,25905
|
|
@@ -62,7 +63,7 @@ xtgeo/grid3d/_grdecl_format.py,sha256=Nrp-dUh8p6G0WgDiWRfY_otxPwS_wUaUpReXVoj-U_
|
|
|
62
63
|
xtgeo/grid3d/_grid_wellzone.py,sha256=cBLmO4YL62vHEVvltxFHyQScZIY2RQQcrIqq9Cx6euE,5786
|
|
63
64
|
xtgeo/grid3d/_find_gridprop_in_eclrun.py,sha256=zUv1Fk5ouSICYd9SR7NpHbN78rFBcN7FBlURmeyaedk,21434
|
|
64
65
|
xtgeo/grid3d/_gridprop_lowlevel.py,sha256=8aUDxj1mPu8yH0F9FVaxxumew1OdBOkwEQI5tjIZEQI,5086
|
|
65
|
-
xtgeo/grid3d/_grid_etc1.py,sha256=
|
|
66
|
+
xtgeo/grid3d/_grid_etc1.py,sha256=VVlvDoA7vz1n9IIu2DJpMOM-MEd0vjQk4mDKJi9R3qc,45007
|
|
66
67
|
xtgeo/grid3d/_gridprops_import_eclrun.py,sha256=kWzubpyeorvfUSEjIF-UdoGnzQYYsUePW2jUtgoTuf0,11438
|
|
67
68
|
xtgeo/grid3d/_gridprop_import_roff.py,sha256=tXp_mMqwfblSEb5KUbMOcL-TgGVn--vEqzPeXAK1IuI,1523
|
|
68
69
|
xtgeo/grid3d/_gridprop_export.py,sha256=i4aukBXCeoYYIVJytG8ObjA1KyDGQqsQr2XukSSbZYg,6533
|
|
@@ -76,30 +77,30 @@ xtgeo/grid3d/_gridprop_import_xtgcpprop.py,sha256=-9576pMYO78IZl4VgaI_dk-ArCh0LR
|
|
|
76
77
|
xtgeo/grid3d/_gridprop_value_init.py,sha256=tN3LVziZsyIxbghkpGt6tCsHWFvGEm1e8ZpYpBgBdB8,4314
|
|
77
78
|
xtgeo/cube/_cube_roxapi.py,sha256=mj9Nnug13t_Fsu0w4KKaJNEmrB_kYb0m133T6W-7wt0,4921
|
|
78
79
|
xtgeo/cube/__init__.py,sha256=JJHhXXkXgFYRZTk5JDtqjxVzczDgLsHSLS-NPgCutIU,160
|
|
79
|
-
xtgeo/cube/_cube_window_attributes.py,sha256=
|
|
80
|
+
xtgeo/cube/_cube_window_attributes.py,sha256=MvD5pCjoJQ43EFKEfvOV6gCF7b3rwk2BluLe9wt59bo,9981
|
|
80
81
|
xtgeo/cube/_cube_utils.py,sha256=wTQZX2sNgmsYRRswjqr4h_NJp1CwbXVH1DWIejaIRbo,7440
|
|
81
82
|
xtgeo/cube/_cube_import.py,sha256=7wgjUZHeXnP2KyW5zKQwX1X1k_t0RC6Rat7PL-m67PA,16782
|
|
82
83
|
xtgeo/cube/_cube_export.py,sha256=G2e4ybxl7htjkGn1O-Eb9FrVf1o55esr_roNNubEknk,6445
|
|
83
84
|
xtgeo/cube/cube1.py,sha256=WTUGu_A4-SL2-9X-xLFjXIrmSmZy63Ebxt29R0g8VBM,34841
|
|
84
|
-
xtgeo/xyz/points.py,sha256=
|
|
85
|
+
xtgeo/xyz/points.py,sha256=UdgFmBtsHSyzTwV27XvhQNDAOgeWbG6PU_HNqRpJ9qU,22582
|
|
85
86
|
xtgeo/xyz/_xyz_data.py,sha256=YRap9It2oYz7-_YGwNPXe4lxiXi45CCLpYQshQQXXI0,24126
|
|
86
87
|
xtgeo/xyz/polygons.py,sha256=fIh3DNfhj-uZnMTmB1w2AcRi_r_eoMxA-Ytm3QkLJUg,27964
|
|
87
88
|
xtgeo/xyz/__init__.py,sha256=yoBAADZ8lpnr_IY7txqpHIXQ_6atwxQckopaEgVkx-E,174
|
|
88
89
|
xtgeo/xyz/_xyz_oper.py,sha256=P8b2rGDZGDh8k7Jwg_SI-Jw6NaAF6I1LfhhybOTIcXw,19445
|
|
89
90
|
xtgeo/xyz/_xyz_roxapi.py,sha256=tP29S1cy4Il8wExScgmgrBKu6WO2MMbRCr-YjSARnUQ,25819
|
|
90
|
-
xtgeo/xyz/_xyz_io.py,sha256=
|
|
91
|
+
xtgeo/xyz/_xyz_io.py,sha256=5wL6ibpQwi3MSR7H09sdrubiVTkIhA8goHSIlDWQjLk,23981
|
|
91
92
|
xtgeo/xyz/_xyz_lowlevel.py,sha256=xEB_GVyNgI_0uxkl5DJ-rAUVtQ7_zNauiouUf18OmBc,1041
|
|
92
93
|
xtgeo/xyz/_xyz.py,sha256=AcFZMmZj05WNtLHGoYNm8jGphABp2I7WpPvoH12_UCo,28392
|
|
93
94
|
xtgeo/xyz/_polygons_oper.py,sha256=Fe5o7acA72DsOMhOw49xA_uZWuagsyrtSaRIADsy764,9346
|
|
94
95
|
xtgeo/io/__init__.py,sha256=iP27kGdvI2cArE7o88AJl21Q24IhOvQZUJzD6HNwm1U,22
|
|
95
|
-
xtgeo/io/_file.py,sha256=
|
|
96
|
+
xtgeo/io/_file.py,sha256=eumzwg_2ZAdKYgI6VqO8CLpz51h7uJzkOAS0eZJjAQE,20496
|
|
96
97
|
xtgeo/surface/_regsurf_lowlevel.py,sha256=MNq6hwF0LRhgLqoPvdGje2pt_OTVUdjIw1T5iX5RTp8,3488
|
|
97
98
|
xtgeo/surface/_zmap_parser.py,sha256=MRQk_62UfMWjCi1JZtrQe2vJrldpm77wpShM8zj3JIA,4070
|
|
98
99
|
xtgeo/surface/_regsurf_gridding.py,sha256=aP2BIbk-NXQ-VDaS-HK3KuinaXkOJ3eLXQvdA4UCMoM,10212
|
|
99
100
|
xtgeo/surface/_regsurf_ijxyz_parser.py,sha256=QPBdR5_jltx9VFw2kzvRtuaz-XaHD6xb7YeGAh2JYAA,9877
|
|
100
101
|
xtgeo/surface/surfaces.py,sha256=exrkUPRRF4FMpxPFEW-Otcvi4rWI33IsgSYMyIIDesA,9363
|
|
101
102
|
xtgeo/surface/_regsurf_grid3d.py,sha256=Fr9nqNtXiSNFUwwFGWpngg9OWB9Io-_0grat85z3U3E,9164
|
|
102
|
-
xtgeo/surface/regular_surface.py,sha256
|
|
103
|
+
xtgeo/surface/regular_surface.py,sha256=-OTifN9Xhqjut9qMRCv5NuZPJ3LX0iEAZU-MR4Mk2VA,107594
|
|
103
104
|
xtgeo/surface/_surfs_import.py,sha256=bPnGgwHFbill_EyLAQb2mTAlFEbUQZ3Qj11JnE1hNjU,1240
|
|
104
105
|
xtgeo/surface/_regsurf_roxapi.py,sha256=gBjsX5Q_P7tCeykw1mLXnZvZgtgF0rksfyt0hl6DPCA,8477
|
|
105
106
|
xtgeo/surface/__init__.py,sha256=jo6r3XXD1A6ZTWW57u77Ivu7SQqvXNPaY9BGZOmNqow,362
|
|
@@ -108,12 +109,12 @@ xtgeo/surface/_regsurf_export.py,sha256=rYLuIQBx8pbEe-AEoEN8332smU3UanrZKJ4jVpvD
|
|
|
108
109
|
xtgeo/surface/_regsurf_cube_window_v3.py,sha256=WElPWT9zha94gfY82IufF2YiApIefg8hEhWi0x55Pk8,10811
|
|
109
110
|
xtgeo/surface/_regsurf_boundary.py,sha256=iEBSy-Jww1yn5Tam1p5-zy4wP0jhwa9So3xYdSPVtwQ,784
|
|
110
111
|
xtgeo/surface/_regsurf_cube_window_v2.py,sha256=m1-bw8zbn6eEscKd2Q7VLXlnwhIP0ClPFFFzyA0b3UU,6165
|
|
111
|
-
xtgeo/surface/_regsurf_oper.py,sha256=
|
|
112
|
+
xtgeo/surface/_regsurf_oper.py,sha256=lGtV7AZ_T1GFfsEhbnREa6lRGIKczTp4lKbVh2fJ4GA,14155
|
|
112
113
|
xtgeo/surface/_regsurf_cube.py,sha256=xZXIE418guB3rG8iscI9xQ0deAtJ_auu1XDe3ml9GBM,4952
|
|
113
114
|
xtgeo/surface/_regsurf_utils.py,sha256=P91jVmstYGe-bn6ut-9xfd8DiOw7QUCt2DLwbnlJwB4,2307
|
|
114
115
|
xtgeo/surface/_regsurf_import.py,sha256=IXD1T4hLRk705RbixSfcOxyrBUilRRbUHYC_S_xZqZA,10396
|
|
115
116
|
xtgeo/common/_xyz_enum.py,sha256=IiKRWhvIKKRhUH2QwpDttW4XqJ4f4StPrVt1vfVBTxM,1045
|
|
116
|
-
xtgeo/common/version.py,sha256=
|
|
117
|
+
xtgeo/common/version.py,sha256=Z4H25mMI0B8wX_ba4wzSfRkE1NUlsx-llAsCu658-BQ,714
|
|
117
118
|
xtgeo/common/log.py,sha256=3C_WdYpCMEr5ebIGoGmalXNP0O2IGvLuJdzeuR8Cd-o,2742
|
|
118
119
|
xtgeo/common/xtgeo_dialog.py,sha256=AcT8DrIBViSZJltwZuEfrcRbmicQEFfbwlf_gV2-6k8,17129
|
|
119
120
|
xtgeo/common/constants.py,sha256=vp6k7lkWKKxyvojQZ1yYhhwXRXGZlMCPK8WY9nG2yns,749
|
|
@@ -123,8 +124,8 @@ xtgeo/common/_angles.py,sha256=VuNLV9pTooF_V3thFTg9SmTMBnKkv6ZxyvOXw22vLE0,822
|
|
|
123
124
|
xtgeo/common/calc.py,sha256=xrJIVqFlrPIjhORbMThQylbjD4xdMM_vtEqBu5vc7C8,10134
|
|
124
125
|
xtgeo/common/exceptions.py,sha256=4BRCtzk74eyc4LeeapAWFLkNh-TT0ev5pDxKJlPaI7s,1175
|
|
125
126
|
xtgeo/common/sys.py,sha256=NGxnVoPoAGx_lekTF9QPBEf-VF8ORp4buoBeh6jkZko,4978
|
|
126
|
-
xtgeo/lib/libfmt.a,sha256=
|
|
127
|
-
xtgeo/lib/pkgconfig/fmt.pc,sha256=
|
|
127
|
+
xtgeo/lib/libfmt.a,sha256=Ciw6waETGRZM_ncpIIqYtgTXGegU7mhEQePVrvUhCd8,163432
|
|
128
|
+
xtgeo/lib/pkgconfig/fmt.pc,sha256=rb8S_AKt4ChY93MWxgDCoWOti9mPpl3dxjG0O-cyYhM,353
|
|
128
129
|
xtgeo/lib/cmake/fmt/fmt-targets-release.cmake,sha256=0hurnnAYtVc8r8yvaxkXAS5Op01RPnwKE6SFNOL1nYA,807
|
|
129
130
|
xtgeo/lib/cmake/fmt/fmt-config.cmake,sha256=Cd-Xn_HSZ-Lk5ZBDX8q49OQKSvnS0_k4r0-tb6G8LW4,999
|
|
130
131
|
xtgeo/lib/cmake/fmt/fmt-config-version.cmake,sha256=p1j16l20z3aEnEsIu-cbcrqFT32K2IJNZl10B8Ww2pk,1862
|
|
@@ -133,5 +134,5 @@ xtgeo/roxutils/roxutils.py,sha256=BGvnWhYKvX2h7eU0ZXNUuDnHi8IM_2lLIzpq9lWZI6M,69
|
|
|
133
134
|
xtgeo/roxutils/__init__.py,sha256=UJKTgNSIGdtRxaUAwot4D5sGCTdfITw6BRaOnGkk41k,92
|
|
134
135
|
xtgeo/roxutils/_roxutils_etc.py,sha256=K1fJKFBinfj32GGYnauU5t1sIgJ0l7N2gkXvaxMpNS8,3730
|
|
135
136
|
xtgeo/roxutils/_roxar_loader.py,sha256=R2yBt7su6_u87UP00lLaiDxW0QuSnFLkEJQgcTWhjZI,1904
|
|
136
|
-
xtgeo/metadata/metadata.py,sha256=
|
|
137
|
+
xtgeo/metadata/metadata.py,sha256=ululOAz5qnLVsIvWcon7gAhL5hqYTMztV0Yns2Cwo10,12904
|
|
137
138
|
xtgeo/metadata/__init__.py,sha256=WXmKZjBGV3kr-lmrPxr3Ph7CpI5KIn3WKlE23crBteA,320
|
|
File without changes
|
|
File without changes
|