A sphere with three ocean waves in differing shades of blue. Next to the sphere, there is the bolded text "Ocean Color". Under that, there are two acronyms, separated by a vertical pipe: OB.DAAC (Ocean Biology Distributed Active Archive Center) and OBPG (Ocean Biology Processing Group).
Lorem
ipsum
dolor
sit
amet
Toggle navigation
Ocean Color Science Software
Jump to content
ocssw
V2022
web
ocssw
ocssw_src
src
scripts
telemetry
ccsdspy
__init__.py
Go to the documentation of this file.
1
# Licensed under a 3-clause BSD style license - see LICENSE.rst
2
3
"""
4
IO Interface for Reading CCSDS Data in Python.
5
"""
6
7
# For egg_info test builds to pass, put package imports here.
8
9
from
.
import
converters
10
from
.packet_fields
import
PacketField, PacketArray
11
from
.packet_types
import
FixedLength, VariableLength
12
from
.utils
import
split_by_apid
13
14
try
:
15
from
._version
import
__version__
16
from
._version
import
version_tuple
17
except
ImportError:
18
__version__ =
"unknown"
19
version_tuple = (0, 0,
"unknown version"
)