From a7083aff6ee8b6d838d6bf28a4f064c395d62fb4 Mon Sep 17 00:00:00 2001 From: Lan <ldam@passcal.nmt.edu> Date: Fri, 18 Aug 2023 18:31:09 -0600 Subject: [PATCH] remove hard code to preven plotting GPS channels but set the height of GPS parameters to 0 instead --- sohstationviewer/database/soh.db | Bin 61440 -> 61440 bytes .../multi_threaded_plotting_widget.py | 5 ----- 2 files changed, 5 deletions(-) diff --git a/sohstationviewer/database/soh.db b/sohstationviewer/database/soh.db index 520d7456237a43f37b1bbc4502ad632c09a6e6d4..d0643eb114b2254f622a5d193c0156c7872f0314 100755 GIT binary patch delta 152 zcmZp8z})bFd4e?Kl8G|Tj7v5qEVNhUeZ-*2v5c4VIsaw;nf&Gaq5KB?EF8=DF7Qp^ z4dh(PGl5Twk9)J4Lk5qcB7-b1o2EPi1Bbg`aIivZPHI_VNoIatPG(+eu}gkQ@#ghD x#*A!y<qSYYll}Fi1c6Kqpn67kS$>Gd$$@&}95Q@t>L61l7wCy?_VC-W5C8;}C$<0p delta 126 zcmZp8z})bFd4e?KqKPujjEgoVEVNhU>1EL5SjNTqoc}WaO#X8IP<{h`7LH|n7x<>| z268UtQ{-dfeY9E4A%lm_kwHnGfnl<umlPw@=Jh_tjBIlJY?|^6ll}Fi*kt+G)Pc-A cJxMk>Ua;r|Jt=m+at3xyRff$TemfQd0H?qog#Z8m diff --git a/sohstationviewer/view/plotting/plotting_widget/multi_threaded_plotting_widget.py b/sohstationviewer/view/plotting/plotting_widget/multi_threaded_plotting_widget.py index 2ef180480..7a6caf5ff 100644 --- a/sohstationviewer/view/plotting/plotting_widget/multi_threaded_plotting_widget.py +++ b/sohstationviewer/view/plotting/plotting_widget/multi_threaded_plotting_widget.py @@ -130,11 +130,6 @@ class MultiThreadedPlottingWidget(PlottingWidget): if chan_db_info['plotType'] == '': continue - # These channels contain GPS data which are only shown in - # the GPS dialog. - if chan_id in {'GLO', 'VLO', 'VLA', 'GLA', 'VEL', 'VNS', 'GNS', - 'GEL'}: - continue plotting_data[chan_id]['chan_db_info'] = chan_db_info self.move_soh_channels_with_link_to_the_end() -- GitLab