Skip to content

Commit b816be7

Browse files
authored
Add OptoDAS I/O format V10 (#506)
* adding Sentek test data * Add sentek data format * new contributor added * contributor added * optoDAS format update * merge to master * Add: extend OptoDAS I/O format to V 10
1 parent fc1bd6e commit b816be7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

dascore/io/optodas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
More info here: https://web.asn.com/
77
"""
88
from __future__ import annotations
9-
from .core import OptoDASV8
9+
from .core import OptoDASV8, OptoDASV10

dascore/io/optodas/core.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,9 @@ def read(
6565
resource, time=time, distance=distance, attr_cls=OptoDASPatchAttrs
6666
)
6767
return dc.spool(patches)
68+
69+
70+
class OptoDASV10(OptoDASV8):
71+
"""Support for OptoDAS V 10."""
72+
73+
version = "10"

0 commit comments

Comments
 (0)