Skip to content

Commit

Permalink
Updates from adi_py-v3.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bdermold committed May 17, 2023
1 parent 53aa022 commit 2436d30
Show file tree
Hide file tree
Showing 16 changed files with 1,896 additions and 865 deletions.
2 changes: 2 additions & 0 deletions packages/adi_py/adi_py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

from .process import Process

from .utils import DatastreamIdentifier

from .xarray_accessors import ADIDatasetAccessor, ADIDataArrayAccessor

from .exception import SkipProcessingIntervalException
Expand Down
4 changes: 2 additions & 2 deletions packages/adi_py/adi_py/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ class SpecialXrAttributes:
SOURCE_VAR_NAME = '__source_var_name'
COORDINATE_SYSTEM = '__coordsys_name'
OUTPUT_TARGETS = '__output_targets'
DATASTREAM_NAME = '__datastream_name'
DATASTREAM_DSID = '__datastream_dsid'
DATASET_TYPE = '__dataset_type'
OBS_INDEX = '__obs_index'


class ADIAtts:
MISSING_VALUE = 'missing_value'
LONG_NAME = 'long_name'
Expand Down Expand Up @@ -64,4 +65,3 @@ class ADIDatasetType(Enum):
RETRIEVED = 1
TRANSFORMED = 2
OUTPUT = 3

2 changes: 1 addition & 1 deletion packages/adi_py/adi_py/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def warning(message):

@staticmethod
def error(message):
dsproc.error(message)
dsproc.error(message, None)

@staticmethod
def exception(message):
Expand Down
387 changes: 345 additions & 42 deletions packages/adi_py/adi_py/process.py

Large diffs are not rendered by default.

Loading

0 comments on commit 2436d30

Please sign in to comment.