fmu-sumo 2.6.0__py3-none-any.whl → 2.6.1__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.
- fmu/sumo/explorer/_version.py +2 -2
- fmu/sumo/explorer/objects/polygons.py +10 -2
- {fmu_sumo-2.6.0.dist-info → fmu_sumo-2.6.1.dist-info}/METADATA +1 -1
- {fmu_sumo-2.6.0.dist-info → fmu_sumo-2.6.1.dist-info}/RECORD +7 -7
- {fmu_sumo-2.6.0.dist-info → fmu_sumo-2.6.1.dist-info}/WHEEL +0 -0
- {fmu_sumo-2.6.0.dist-info → fmu_sumo-2.6.1.dist-info}/licenses/LICENSE +0 -0
- {fmu_sumo-2.6.0.dist-info → fmu_sumo-2.6.1.dist-info}/top_level.txt +0 -0
fmu/sumo/explorer/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '2.6.
|
|
32
|
-
__version_tuple__ = version_tuple = (2, 6,
|
|
31
|
+
__version__ = version = '2.6.1'
|
|
32
|
+
__version_tuple__ = version_tuple = (2, 6, 1)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -28,7 +28,11 @@ class Polygons(Child):
|
|
|
28
28
|
import pandas as pd
|
|
29
29
|
|
|
30
30
|
try:
|
|
31
|
-
|
|
31
|
+
if self.format == "csv":
|
|
32
|
+
return pd.read_csv(self.blob)
|
|
33
|
+
if self.format == "parquet":
|
|
34
|
+
return pd.read_parquet(self.blob)
|
|
35
|
+
raise TypeError()
|
|
32
36
|
except TypeError as type_err:
|
|
33
37
|
raise TypeError(f"Unknown format: {self.format}") from type_err
|
|
34
38
|
|
|
@@ -42,6 +46,10 @@ class Polygons(Child):
|
|
|
42
46
|
import pandas as pd
|
|
43
47
|
|
|
44
48
|
try:
|
|
45
|
-
|
|
49
|
+
if self.format == "csv":
|
|
50
|
+
return pd.read_csv(await self.blob_async)
|
|
51
|
+
if self.format == "parquet":
|
|
52
|
+
return pd.read_parquet(await self.blob_async)
|
|
53
|
+
raise TypeError()
|
|
46
54
|
except TypeError as type_err:
|
|
47
55
|
raise TypeError(f"Unknown format: {self.format}") from type_err
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
fmu/__init__.py,sha256=ftS-xRPSH-vU7fIHlnZQaCTWbNvs4owJivNW65kzsIM,85
|
|
2
2
|
fmu/sumo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
fmu/sumo/explorer/__init__.py,sha256=Bc1wd1lQO3HP3tsVyPbqaesf2boZwGdtookWp8lmG-k,317
|
|
4
|
-
fmu/sumo/explorer/_version.py,sha256=
|
|
4
|
+
fmu/sumo/explorer/_version.py,sha256=R3nAdtkSnfWQfMhppxIGX5PF_LCUxXEJWAbteo-LBjg,704
|
|
5
5
|
fmu/sumo/explorer/cache.py,sha256=uvz8TciwBnDEwJIHa9wneC0WVWuzhUqyF3dzk4kvGNk,1037
|
|
6
6
|
fmu/sumo/explorer/explorer.py,sha256=_3nUTO1E_nf6jqpivjgjKcX6rX1fx_mIG76YOM8xb-8,2931
|
|
7
7
|
fmu/sumo/explorer/filters.py,sha256=_t2PmHeTY9XiBvQeEGM-BpudWUaxIfyUSdNyG70xfRU,875
|
|
@@ -21,13 +21,13 @@ fmu/sumo/explorer/objects/ensemble.py,sha256=MoGiXrtyVL8_cQt5vjh0rIA5bMMGRahPb28
|
|
|
21
21
|
fmu/sumo/explorer/objects/ensembles.py,sha256=uFtnWDgk316NRM_JvD1C7PK20gDOPQVQjCygPFhe3ZE,772
|
|
22
22
|
fmu/sumo/explorer/objects/iteration.py,sha256=vXaH6G93pNPvufgliqRSs4fpqgNvgxa7QI0G0ucgr_U,2784
|
|
23
23
|
fmu/sumo/explorer/objects/iterations.py,sha256=ZRQOxPl6MpX7JV7lfvtXp8mGLHl37pl3-F9YAXYfRgc,778
|
|
24
|
-
fmu/sumo/explorer/objects/polygons.py,sha256=
|
|
24
|
+
fmu/sumo/explorer/objects/polygons.py,sha256=0N6sKTOGkYO6augIbBObzdovCAIF5VtA_XDzbWvd3YY,1523
|
|
25
25
|
fmu/sumo/explorer/objects/realization.py,sha256=HK47WyX6kwe6ZoHaGHeTWEno86Wkh9THLOtEzOt1FGE,2483
|
|
26
26
|
fmu/sumo/explorer/objects/realizations.py,sha256=ojyQDZNEGubRE97z7c5WHK1ZnO267jsIureNeIzouAw,1120
|
|
27
27
|
fmu/sumo/explorer/objects/surface.py,sha256=zHBtjLCIfkRHBv39OeJjA9lq3puLTfTII6TndZTtxVI,1627
|
|
28
28
|
fmu/sumo/explorer/objects/table.py,sha256=vLor3YTddHkDWZSMyWPQsddFNQ2_VXE_O-stmPIWIaQ,4900
|
|
29
|
-
fmu_sumo-2.6.
|
|
30
|
-
fmu_sumo-2.6.
|
|
31
|
-
fmu_sumo-2.6.
|
|
32
|
-
fmu_sumo-2.6.
|
|
33
|
-
fmu_sumo-2.6.
|
|
29
|
+
fmu_sumo-2.6.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
30
|
+
fmu_sumo-2.6.1.dist-info/METADATA,sha256=Inxme3ShCFnc9lD0mvArkQueZrW7UkXhrfOP_W4ejpA,14781
|
|
31
|
+
fmu_sumo-2.6.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
32
|
+
fmu_sumo-2.6.1.dist-info/top_level.txt,sha256=Z-FIY3pxn0UK2Wxi9IJ7fKoLSraaxuNGi1eokiE0ShM,4
|
|
33
|
+
fmu_sumo-2.6.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|