Skip to content

Commit

Permalink
added new sippican probe type
Browse files Browse the repository at this point in the history
  • Loading branch information
giumas committed Nov 12, 2018
1 parent 3a0d9e7 commit 2ef6c78
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hyo/soundspeed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
log = logging.getLogger(__name__)
log.addHandler(logging.NullHandler())

__version__ = '2018.1.48'
__version__ = '2018.1.49'
__doc__ = "Sound Speed"
__author__ = '[email protected]; [email protected]; [email protected]; ' \
'[email protected]'
Expand Down
1 change: 1 addition & 0 deletions hyo/soundspeed/formats/readers/sippican.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class Sippican(AbstractTextReader):
Dicts.probe_types["T-4"]: Dicts.sensor_types["XBT"],
Dicts.probe_types["T-5"]: Dicts.sensor_types["XBT"],
Dicts.probe_types["T-5/20"]: Dicts.sensor_types["XBT"],
Dicts.probe_types["T-5_20"]: Dicts.sensor_types["XBT"],
Dicts.probe_types["T-7"]: Dicts.sensor_types["XBT"],
Dicts.probe_types["XSV-01"]: Dicts.sensor_types["XSV"],
Dicts.probe_types["XSV-02"]: Dicts.sensor_types["XSV"],
Expand Down
1 change: 1 addition & 0 deletions hyo/soundspeed/profile/dicts.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def first_match(cls, dct, val):
('XCTD-1', 209),
('XCTD-2', 210),
('Fast Deep', 211),
('T-5_20', 212),

('MONITOR SVP 500', 300),
('MIDAS SVP 6000', 301),
Expand Down
2 changes: 1 addition & 1 deletion hyo/soundspeedmanager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())

__version__ = '2018.1.48'
__version__ = '2018.1.49'
__doc__ = "Sound Speed Manager"
__author__ = '[email protected]; [email protected]; [email protected]; ' \
'[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion hyo/soundspeedsettings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())

__version__ = '2018.1.48'
__version__ = '2018.1.49'
__doc__ = "Sound Speed Settings"
__author__ = '[email protected]; [email protected]; [email protected]; ' \
'[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def txt_read(*paths):
setup_args = dict()

setup_args['name'] = 'hyo.soundspeed'
setup_args['version'] = '2018.1.48'
setup_args['version'] = '2018.1.49'
setup_args['url'] = 'https://bitbucket.org/ccomjhc/hyo_soundspeed/'
setup_args['license'] = 'LGPLv2.1 or CCOM-UNH Industrial Associate license'
setup_args['author'] = 'Giuseppe Masetti(UNH,CCOM); Barry Gallagher(NOAA,OCS); ' \
Expand Down

0 comments on commit 2ef6c78

Please sign in to comment.