Skip to content
Snippets Groups Projects
Commit bb506454 authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

add Mask to top level

parent b925f4ee
No related branches found
No related tags found
1 merge request!286Add mask to Info object
...@@ -79,6 +79,7 @@ Utilities for data and metadata handling. ...@@ -79,6 +79,7 @@ Utilities for data and metadata handling.
:caption: Data tools :caption: Data tools
Info Info
Mask
UNITS UNITS
Interfaces Interfaces
...@@ -135,6 +136,7 @@ Built-in components, adapters and tool functions. ...@@ -135,6 +136,7 @@ Built-in components, adapters and tool functions.
tools tools
""" """
from . import adapters, data, interfaces, modules, schedule, sdk, tools from . import adapters, data, interfaces, modules, schedule, sdk, tools
from .data.grid_spec import ( from .data.grid_spec import (
EsriGrid, EsriGrid,
...@@ -145,7 +147,7 @@ from .data.grid_spec import ( ...@@ -145,7 +147,7 @@ from .data.grid_spec import (
UnstructuredPoints, UnstructuredPoints,
) )
from .data.grid_tools import CellType, Location from .data.grid_tools import CellType, Location
from .data.tools import UNITS, Info from .data.tools import UNITS, Info, Mask
from .errors import ( from .errors import (
FinamCircularCouplingError, FinamCircularCouplingError,
FinamConnectError, FinamConnectError,
...@@ -225,7 +227,7 @@ __all__ += [ ...@@ -225,7 +227,7 @@ __all__ += [
"UnstructuredPoints", "UnstructuredPoints",
] ]
__all__ += ["CellType", "Location"] __all__ += ["CellType", "Location"]
__all__ += ["UNITS", "Info"] __all__ += ["UNITS", "Info", "Mask"]
__all__ += [ __all__ += [
"FinamCircularCouplingError", "FinamCircularCouplingError",
"FinamConnectError", "FinamConnectError",
......
...@@ -47,6 +47,7 @@ Data tools ...@@ -47,6 +47,7 @@ Data tools
:noindex: UNITS :noindex: UNITS
:noindex: Info :noindex: Info
:noindex: Mask
assert_type assert_type
check check
check_quantified check_quantified
...@@ -92,6 +93,7 @@ from .grid_tools import ( ...@@ -92,6 +93,7 @@ from .grid_tools import (
from .tools import ( from .tools import (
UNITS, UNITS,
Info, Info,
Mask,
assert_type, assert_type,
check, check,
check_data_covers_domain, check_data_covers_domain,
...@@ -139,6 +141,7 @@ __all__ += [ ...@@ -139,6 +141,7 @@ __all__ += [
"UNITS", "UNITS",
"FinamDataError", "FinamDataError",
"Info", "Info",
"Mask",
"assert_type", "assert_type",
"check", "check",
"check_quantified", "check_quantified",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment