-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
"""Module containing class for cpgrid""" | ||
|
||
from typing import Dict | ||
from sumo.wrapper import SumoClient | ||
from fmu.sumo.explorer.objects._child import Child | ||
|
||
class CPGrid(Child): | ||
"""Class representing a cpgrid object in Sumo.""" | ||
|
||
def __init__(self, sumo: SumoClient, metadata: Dict, blob=None) -> None: | ||
""" | ||
Args: | ||
sumo (SumoClient): connection to Sumo | ||
metadata (dict): dictionary metadata | ||
blob: data object | ||
""" | ||
super().__init__(sumo, metadata, blob) | ||
|
||
def to_cpgrid(self): | ||
"""Get cpgrid object as a Grid | ||
Returns: | ||
Grid: A Grid object | ||
""" | ||
try: | ||
from xtgeo import grid_from_file | ||
except ModuleNotFoundError: | ||
raise RuntimeError("Unable to import xtgeo; probably not installed.") | ||
try: | ||
return grid_from_file(self.blob) | ||
except TypeError as err: | ||
raise TypeError(f"Unknown format: {self.format}") from type_err | ||
|
||
async def to_cpgrid_async(self): | ||
"""Get cpgrid object as a Grid | ||
Returns: | ||
Grid: A Grid object | ||
""" | ||
try: | ||
from xtgeo import grid_from_file | ||
except ModuleNotFoundError: | ||
raise RuntimeError("Unable to import xtgeo; probably not installed.") | ||
|
||
try: | ||
return grid_from_file(await self.blob_async) | ||
except TypeError as err: | ||
raise TypeError(f"Unknown format: {self.format}") from type_err |