res2df 1.1.1__py2.py3-none-any.whl → 1.2.0__py2.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.
- res2df/__init__.py +3 -3
- res2df/common.py +13 -10
- res2df/compdat.py +41 -53
- res2df/equil.py +10 -19
- res2df/faults.py +3 -4
- res2df/fipreports.py +2 -2
- res2df/grid.py +10 -11
- res2df/gruptree.py +9 -13
- res2df/hook_implementations/jobs.py +5 -11
- res2df/inferdims.py +11 -16
- res2df/nnc.py +2 -2
- res2df/opmkeywords/readme +1 -2
- res2df/parameters.py +1 -1
- res2df/pillars.py +1 -4
- res2df/pvt.py +20 -44
- res2df/res2csv.py +1 -0
- res2df/rft.py +7 -8
- res2df/satfunc.py +7 -11
- res2df/summary.py +15 -120
- res2df/trans.py +1 -0
- res2df/version.py +2 -2
- res2df/vfp/__init__.py +1 -1
- res2df/vfp/_vfp.py +12 -15
- res2df/vfp/_vfpcommon.py +1 -5
- res2df/vfp/_vfpinj.py +2 -2
- res2df/vfp/_vfpprod.py +4 -5
- res2df/wcon.py +2 -3
- {res2df-1.1.1.dist-info → res2df-1.2.0.dist-info}/METADATA +28 -28
- {res2df-1.1.1.dist-info → res2df-1.2.0.dist-info}/RECORD +33 -33
- {res2df-1.1.1.dist-info → res2df-1.2.0.dist-info}/WHEEL +1 -1
- {res2df-1.1.1.dist-info → res2df-1.2.0.dist-info}/LICENSE +0 -0
- {res2df-1.1.1.dist-info → res2df-1.2.0.dist-info}/entry_points.txt +0 -0
- {res2df-1.1.1.dist-info → res2df-1.2.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: res2df
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Convert reservoir simulator input and output to DataFrames
|
|
5
5
|
Home-page: http://github.com/equinor/res2df
|
|
6
6
|
Author: Håvard Berland
|
|
@@ -9,51 +9,51 @@ License: GPLv3
|
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
License-File: LICENSE
|
|
12
|
-
Requires-Dist: resdata
|
|
12
|
+
Requires-Dist: resdata>=5.0.0-b0
|
|
13
13
|
Requires-Dist: numpy
|
|
14
|
-
Requires-Dist: opm
|
|
14
|
+
Requires-Dist: opm>=2020.10.2
|
|
15
15
|
Requires-Dist: pandas
|
|
16
16
|
Requires-Dist: pyarrow
|
|
17
|
-
Requires-Dist: pyyaml
|
|
17
|
+
Requires-Dist: pyyaml>=5.1
|
|
18
18
|
Requires-Dist: treelib
|
|
19
19
|
Provides-Extra: docs
|
|
20
|
-
Requires-Dist: autoapi
|
|
21
|
-
Requires-Dist: ipython
|
|
22
|
-
Requires-Dist: rstcheck
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist: sphinx
|
|
25
|
-
Requires-Dist: sphinx-
|
|
26
|
-
Requires-Dist: sphinx-
|
|
20
|
+
Requires-Dist: autoapi; extra == "docs"
|
|
21
|
+
Requires-Dist: ipython; extra == "docs"
|
|
22
|
+
Requires-Dist: rstcheck; extra == "docs"
|
|
23
|
+
Requires-Dist: setuptools; extra == "docs"
|
|
24
|
+
Requires-Dist: sphinx<7; extra == "docs"
|
|
25
|
+
Requires-Dist: sphinx-argparse; extra == "docs"
|
|
26
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
|
|
27
|
+
Requires-Dist: sphinx-rtd-theme; extra == "docs"
|
|
27
28
|
Provides-Extra: ert
|
|
28
|
-
Requires-Dist: ert
|
|
29
|
+
Requires-Dist: ert>=10.2.0b13; extra == "ert"
|
|
30
|
+
Provides-Extra: style
|
|
31
|
+
Requires-Dist: pre-commit; extra == "style"
|
|
29
32
|
Provides-Extra: tests
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist: types-PyYAML ; extra == 'tests'
|
|
40
|
-
Requires-Dist: types-pkg-resources ; extra == 'tests'
|
|
41
|
-
Requires-Dist: types-python-dateutil ; extra == 'tests'
|
|
33
|
+
Requires-Dist: networkx; extra == "tests"
|
|
34
|
+
Requires-Dist: pytest; extra == "tests"
|
|
35
|
+
Requires-Dist: pytest-cov; extra == "tests"
|
|
36
|
+
Requires-Dist: pytest-mock; extra == "tests"
|
|
37
|
+
Provides-Extra: types
|
|
38
|
+
Requires-Dist: mypy; extra == "types"
|
|
39
|
+
Requires-Dist: types-PyYAML; extra == "types"
|
|
40
|
+
Requires-Dist: types-python-dateutil; extra == "types"
|
|
41
|
+
Requires-Dist: types-setuptools; extra == "types"
|
|
42
42
|
|
|
43
43
|
[](https://github.com/equinor/res2df/actions?query=workflow%3Ares2df)
|
|
44
44
|
[](https://codecov.io/gh/equinor/res2df)
|
|
45
|
-
[](https://www.python.org)
|
|
46
|
+
[](https://github.com/astral-sh/ruff)
|
|
47
47
|
[](https://www.gnu.org/licenses/gpl-3.0)
|
|
48
48
|
|
|
49
49
|
# res2df
|
|
50
50
|
|
|
51
51
|
res2df is a Pandas DataFrame wrapper around resdata and opm.io, which
|
|
52
|
-
are used to access binary files outputted by reservoir simulators,
|
|
52
|
+
are used to access binary files outputted by reservoir simulators,
|
|
53
53
|
or its input files --- or any other tool outputting to the same data format.
|
|
54
54
|
|
|
55
55
|
The reverse operation, from a Pandas DataFrame to reservoir simulator include files
|
|
56
|
-
(commonly given the extension ".inc", ".grdecl" etc.) is provided for some of the
|
|
56
|
+
(commonly given the extension ".inc", ".grdecl" etc.) is provided for some of the
|
|
57
57
|
modules.
|
|
58
58
|
|
|
59
59
|
The package consists of a module pr. datatype, e.g. one module for summary
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
res2df/__init__.py,sha256=
|
|
1
|
+
res2df/__init__.py,sha256=M4U5Q5zJ-W0ni3YcDBs_ZobKVW6ZLAmQXspbZEOqkwo,601
|
|
2
2
|
res2df/__version__.py,sha256=UtExCuqQ29NY2we1bzLXvNkP21JU7hx1wXM4G1uPvts,128
|
|
3
|
-
res2df/common.py,sha256=
|
|
4
|
-
res2df/compdat.py,sha256=
|
|
3
|
+
res2df/common.py,sha256=ebxkV5rFzOGOaaX9J5bm-OeLJd27PtvY14pRVt-GTj0,34772
|
|
4
|
+
res2df/compdat.py,sha256=YSKSY65OsJhl0I8TDd0PHvboGBngpkUMzWCIITYcTmo,36853
|
|
5
5
|
res2df/constants.py,sha256=0W-ZYlm3Bbe9MONrRhA0c4yLXfJlqGX5apFN64i8RU0,258
|
|
6
6
|
res2df/csv2res.py,sha256=rKVHWIoQ6yLRlq22747jKP9XbunJ791F7emBS2N8xNA,4033
|
|
7
|
-
res2df/equil.py,sha256=
|
|
8
|
-
res2df/faults.py,sha256=
|
|
9
|
-
res2df/fipreports.py,sha256=
|
|
10
|
-
res2df/grid.py,sha256=
|
|
11
|
-
res2df/gruptree.py,sha256=
|
|
12
|
-
res2df/inferdims.py,sha256=
|
|
13
|
-
res2df/nnc.py,sha256=
|
|
14
|
-
res2df/parameters.py,sha256=
|
|
15
|
-
res2df/pillars.py,sha256=
|
|
16
|
-
res2df/pvt.py,sha256=
|
|
17
|
-
res2df/res2csv.py,sha256=
|
|
7
|
+
res2df/equil.py,sha256=Ifg4hGZ72w1NDStcWyq5KB9VNgLUvSKheBHO7bAo23c,17178
|
|
8
|
+
res2df/faults.py,sha256=5v4cWcEmIQwG8TXBBsiteT_3kCNO0noNiAiOZ6JC-80,3163
|
|
9
|
+
res2df/fipreports.py,sha256=msZgrUfpQaZppboQgAwVOtReQHKepdsgwJ9lNAcrt0Y,7631
|
|
10
|
+
res2df/grid.py,sha256=A0P9dj75Kqmrq7fZCIdOwXZU3R6PSaBiVpG1vr_dQ9k,27630
|
|
11
|
+
res2df/gruptree.py,sha256=7S_ecXQkCzIJNik3Iz049ZRZ2Zq6eK2_tRnJkODRuBU,16498
|
|
12
|
+
res2df/inferdims.py,sha256=ur0GE1ASzfzoXPgUjaow46NWBlBCgiX6qfAmn8HJatg,7329
|
|
13
|
+
res2df/nnc.py,sha256=qEPuAhTFwmZuClxaKsrBh28HlLquE0-XH7ams4ylt50,9346
|
|
14
|
+
res2df/parameters.py,sha256=pkgmW5tVtyMav1T43RxdYHnoejvnZarFhKfhhgp028U,6277
|
|
15
|
+
res2df/pillars.py,sha256=NXFZhcd4L0pRFLH3B3ip_3ClVuy8Dgz13m4QW4mZDfA,16174
|
|
16
|
+
res2df/pvt.py,sha256=3PfsQst6Nz3LUvMPZOha5sdwdu7U7leZQRrgcFMf_uE,22645
|
|
17
|
+
res2df/res2csv.py,sha256=aKqSHNTNXxMb3Ahwh1Cx2BSx7bXV3dSGxhjuPznDABA,12080
|
|
18
18
|
res2df/res2csvlogger.py,sha256=rsg1IweNsOiP2zHoYqpipQxW2FbvSIN5XNOlQHXfUqo,2328
|
|
19
19
|
res2df/resdatafiles.py,sha256=xBW3GewottrdFqpj4LxGKjCbfLEPC0H7Odw1Mn1ls_U,10093
|
|
20
|
-
res2df/rft.py,sha256=
|
|
21
|
-
res2df/satfunc.py,sha256=
|
|
22
|
-
res2df/summary.py,sha256
|
|
20
|
+
res2df/rft.py,sha256=cA-D4wNLj_YbriOsr2CEGZHvwBWxr2VS5mdEXj5x2Go,28093
|
|
21
|
+
res2df/satfunc.py,sha256=ms1SMMg2XqE5SbGyf1ot_dxEzChbGgVfRkq6n9Gj778,13658
|
|
22
|
+
res2df/summary.py,sha256=-5VZtSEAqiE1LEjYjZcejOB2UhaNOLW40A_oVXdM1LI,31623
|
|
23
23
|
res2df/svg_color_keyword_names.txt,sha256=yiI2Ohv3NxxEAJC5OjVERZi7MLi2-bk7okyI5-xFDr8,1456
|
|
24
|
-
res2df/trans.py,sha256=
|
|
25
|
-
res2df/version.py,sha256=
|
|
26
|
-
res2df/wcon.py,sha256=
|
|
24
|
+
res2df/trans.py,sha256=fWlelN74QPnxm5krWYXIGxhRZKVJA2r1lHXE-Ac1DuI,10880
|
|
25
|
+
res2df/version.py,sha256=zMnMemknXglcJs59xkicNzeEJTVgYd1omSfLWj76yWw,411
|
|
26
|
+
res2df/wcon.py,sha256=67A2qtqokaefLyI5mdTaGkTlkSkDIRhVNVYA-8TE9oE,3376
|
|
27
27
|
res2df/wellcompletiondata.py,sha256=s4PvMNYBcgSJzPE6_so6suxgeI_fzHbDzA8kHxen-AA,10990
|
|
28
28
|
res2df/wellconnstatus.py,sha256=KPteMgwomDpp11rAkmN5GTLMEdS79Ah0QEFdG0VSu-E,4055
|
|
29
29
|
res2df/config_jobs/CSV2RES,sha256=1s9p8fVOLaWoSuubQoiKMXKDKzXnkDGUOLmm8bNfuyY,94
|
|
30
30
|
res2df/config_jobs/RES2CSV,sha256=lkLuiJaY2j3MXj8H8jjfn__6aSUZftGMckkjE91hLfU,372
|
|
31
31
|
res2df/hook_implementations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
res2df/hook_implementations/jobs.py,sha256=
|
|
32
|
+
res2df/hook_implementations/jobs.py,sha256=fowzvV--_Tv9MJ3vCIkUNqIE1Bdm27DlI0Vc_pLf7XU,1729
|
|
33
33
|
res2df/opmkeywords/BRANPROP,sha256=MZA6L6J9olaprrUhRah_wgJoOiYXP-DknVAYOdsIC14,475
|
|
34
34
|
res2df/opmkeywords/COMPDAT,sha256=K19zEK1p9XNoKhD0ylLEJ-oNTi88QQNeUXt7qckO4lg,1345
|
|
35
35
|
res2df/opmkeywords/COMPLUMP,sha256=AC1vBiHmQIjf9IxeVTGp38Ld8Xjz_xHQOUIg-VmGhFk,514
|
|
@@ -73,17 +73,17 @@ res2df/opmkeywords/WLIST,sha256=r2qcSSzNvBjeZlRo-apCTeWRAxrzNL2oNDq_QIHEm-c,317
|
|
|
73
73
|
res2df/opmkeywords/WSEGAICD,sha256=kDUukuTv_C4zMG5kho8Jiy4YIqHmr2YILgXIVR727CA,2192
|
|
74
74
|
res2df/opmkeywords/WSEGSICD,sha256=b34kWwhzl5ansUKp_3-64stIbeKadi_esh9D4SnRx1A,1447
|
|
75
75
|
res2df/opmkeywords/WSEGVALV,sha256=iCknAC9AEhGx_28iv1FSYhukQFT8_ekDdqxfhVrHFJo,963
|
|
76
|
-
res2df/opmkeywords/readme,sha256=
|
|
76
|
+
res2df/opmkeywords/readme,sha256=xJM2Or6oiSP02xTe-aY4efPeh5UQiTieScoPHGV4rH0,285
|
|
77
77
|
res2df/opmkeywords/runmetoupdate.sh,sha256=GKvjvd3H3Sf0bmeIduQ43pYcDmcBlOL_Epfm_xjDFUA,996
|
|
78
|
-
res2df/vfp/__init__.py,sha256=
|
|
79
|
-
res2df/vfp/_vfp.py,sha256=
|
|
80
|
-
res2df/vfp/_vfpcommon.py,sha256=
|
|
78
|
+
res2df/vfp/__init__.py,sha256=sJA_IWTLm3YRX-EjFI7z3DfJdmL_83zMxdAvm4tXdOQ,362
|
|
79
|
+
res2df/vfp/_vfp.py,sha256=BXqfmdOu6kF8QVaWIOVUTJlNzHu5SIsMDYMidmMoc_o,19626
|
|
80
|
+
res2df/vfp/_vfpcommon.py,sha256=0no9r1jwGaABXexZ6WoKrOl2fFq87RMmcRZLE640cnk,7053
|
|
81
81
|
res2df/vfp/_vfpdefs.py,sha256=yvi5nCkJ2UZxVx0LuVbBHLNjn0e0UCSZudmzvTk689A,7028
|
|
82
|
-
res2df/vfp/_vfpinj.py,sha256
|
|
83
|
-
res2df/vfp/_vfpprod.py,sha256=
|
|
84
|
-
res2df-1.
|
|
85
|
-
res2df-1.
|
|
86
|
-
res2df-1.
|
|
87
|
-
res2df-1.
|
|
88
|
-
res2df-1.
|
|
89
|
-
res2df-1.
|
|
82
|
+
res2df/vfp/_vfpinj.py,sha256=-QgT0hKBd7mW9VcEaROtwOdxJlZlutRHCNp9wiED6jM,23594
|
|
83
|
+
res2df/vfp/_vfpprod.py,sha256=0ar8v1JUFy3f4ezofdwCsq5Xricg6tQArre9rjI5Ol0,36743
|
|
84
|
+
res2df-1.2.0.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
85
|
+
res2df-1.2.0.dist-info/METADATA,sha256=FpATY9D8C39LaFMpTlI5HgdiS_CPaK3a6vurwxU-w6g,3081
|
|
86
|
+
res2df-1.2.0.dist-info/WHEEL,sha256=WDDPHYzpiOIm6GP1C2_8y8W6q16ICddAgOHlhTje9Qc,109
|
|
87
|
+
res2df-1.2.0.dist-info/entry_points.txt,sha256=MEFyOYIu-X3ZCgqZIE6t8EnmZ3xGvMAj8VMkJdi_lZY,164
|
|
88
|
+
res2df-1.2.0.dist-info/top_level.txt,sha256=U8AZBqrFHm9PMXg0toCfHJ817VfFtdKQpc8JuS5qToM,7
|
|
89
|
+
res2df-1.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|