Skip to content

Commit

Permalink
added support for Valepot SWiFT CTD
Browse files Browse the repository at this point in the history
  • Loading branch information
giumas committed Sep 12, 2022
1 parent 921dd89 commit 124174a
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# The short X.Y version.
version = '2022.2'
# The full version, including alpha/beta/rc tags.
release = '2022.2.8'
release = '2022.2.9'

numfig = True

Expand Down
2 changes: 1 addition & 1 deletion docs/supported_formats.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Valeport Midas/Monitor SVP/SVX2 (.000) X
Valeport MiniSVP (.txt) X
Valeport RapidSV/SVT (.txt) X
Valeport Monitor CTD, Midas SVP/SVX2(.vpd) X
Valeport SWiFT (.vp2) X
Valeport SWiFT SVP/CTD (.vp2) X
=================================================== ==== =====

.. rubric:: Footnotes
Expand Down
2 changes: 1 addition & 1 deletion hyo2/soundspeed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
logger.addHandler(logging.NullHandler())

name = "Sound Speed"
__version__ = '2022.2.8'
__version__ = '2022.2.9'
__copyright__ = 'Copyright 2022 University of New Hampshire, Center for Coastal and Ocean Mapping'

lib_info = LibInfo()
Expand Down
1 change: 1 addition & 0 deletions hyo2/soundspeed/formats/readers/valeport.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class Valeport(AbstractTextReader):
Dicts.probe_types['RapidSV']: Dicts.sensor_types["SVP"],
Dicts.probe_types['RapidSVT']: Dicts.sensor_types["SVPT"],
Dicts.probe_types['SWiFT']: Dicts.sensor_types["SVPT"],
Dicts.probe_types['SWiFT CTD']: Dicts.sensor_types["CTD"],
Dicts.probe_types['Unknown']: Dicts.sensor_types["Unknown"]
}

Expand Down
3 changes: 3 additions & 0 deletions hyo2/soundspeed/profile/dicts.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ def first_match(cls, dct, val):
('MONITOR CTD', 311),
('MIDAS SVX2', 312),
('MIDAS SVP', 313),
('SWiFT CTD', 314),

('Future', 999),

Expand Down Expand Up @@ -161,6 +162,7 @@ def first_match(cls, dct, val):
("PDS2000", 2),
("QINSY", 3),
("KCTRL", 4),

])

atlases = OrderedDict([
Expand All @@ -181,6 +183,7 @@ def first_match(cls, dct, val):
("RTOFS", 2),
("GoMOFS", 3), # since DB v.3
("WOA18", 4), # since DB v.4

])

mvp_protocols = OrderedDict([
Expand Down
2 changes: 1 addition & 1 deletion hyo2/soundspeedmanager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
logger.addHandler(logging.NullHandler())

name = "Sound Speed Manager"
__version__ = "2022.2.8"
__version__ = "2022.2.9"
__copyright__ = "Copyright 2022 University of New Hampshire, Center for Coastal and Ocean Mapping"

app_info = AppInfo()
Expand Down
Binary file modified hyo2/soundspeedmanager/media/manual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion hyo2/soundspeedsettings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
logger.addHandler(logging.NullHandler())

name = "Sound Speed Settings"
__version__ = '2022.2.8'
__version__ = '2022.2.9'
__copyright__ = 'Copyright 2022 University of New Hampshire, Center for Coastal and Ocean Mapping'

app_info = AppInfo()
Expand Down

0 comments on commit 124174a

Please sign in to comment.