Skip to content
Snippets Groups Projects
Commit c05c6a70 authored by Lan Dam's avatar Lan Dam
Browse files

undo change in reftek, move that change to another MR

parent d240de3c
No related branches found
No related tags found
1 merge request!126Fix gps lk unlk plotting - coloring, positioning label
Pipeline #2577 passed with stage
in 2 minutes and 36 seconds
This commit is part of merge request !126. Comments created here will be created in the context of that merge request.
......@@ -4,7 +4,7 @@ RT130 object to hold and process RefTek data
import os
from pathlib import Path
from typing import Tuple, List, Union
import traceback
import numpy as np
from sohstationviewer.model.reftek.from_rt2ms import (
......@@ -89,15 +89,8 @@ class RT130(DataTypeModel):
path2file = Path(path).joinpath(file_name)
if not validate_file(path2file, file_name):
continue
try:
if not self.read_reftek_130(path2file):
read_text(path2file, self.log_data['TEXT'])
except Exception:
fmt = traceback.format_exc()
self.track_info(f"Skip file {path2file} can't be read "
f"due to error: {str(fmt)}",
LogType.WARNING)
if not self.read_reftek_130(path2file):
read_text(path2file, file_name, self.log_data['TEXT'])
count += 1
if count % 50 == 0:
self.track_info(
......@@ -140,13 +133,7 @@ class RT130(DataTypeModel):
:param path2file: absolute path to file
"""
try:
rt130 = core.Reftek130.from_file(path2file)
except Exception:
fmt = traceback.format_exc()
self.track_info(f"Skip file {path2file} can't be read "
f"due to error: {str(fmt)}", LogType.WARNING)
return
rt130 = core.Reftek130.from_file(path2file)
unique, counts = np.unique(rt130._data["packet_type"],
return_counts=True)
nbr_packet_type = dict(zip(unique, counts))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment