plot SOH channels in user's order
1 unresolved thread
1 unresolved thread
closes #110 (closed)
- Plot channels in order set in Channel Preferences.
- Move check not found channels here
Edited by Lan Dam
Merge request reports
Activity
Filter activity
assigned to @ldam
requested review from @kienle
- Resolved by Kien Le
Move the code that disable plotting of a channel if plotType is empty into another merge request. You can consider that new merge request approved and can be merged.
351 channels found in actual channels. 352 353 :param chan_order: The list of channel that have channels end with '?' 354 :param actual_chans: The actual channel list 355 :return: chan_order that have channels end with '?' replaced by actual 356 channels. 357 """ 358 quest_chans = [c for c in chan_order if c.endswith('?')] 359 for qc in quest_chans: 360 actual_quest_chans = [c for c in list(actual_chans) 361 if qc[:-1] == c[:-1]] 362 if actual_quest_chans: 363 quest_idx = chan_order.index(qc) 364 chan_order.remove(qc) 365 chan_order[quest_idx:quest_idx] = sorted(actual_quest_chans) 366 return chan_order added 22 commits
-
c46745af...886cdda3 - 20 commits from branch
master
- fedfaf0c - Merge branch 'master' into i110_channel_order
- 81a0d778 - multi_threaded_plotting_widget.py: fix some wrong in resolving conflict when...
-
c46745af...886cdda3 - 20 commits from branch
mentioned in merge request !138 (merged)
added 5 commits
-
b2f009bc...7ddd7426 - 4 commits from branch
master
- 6c34554f - Merge branch 'master' into i110_channel_order
-
b2f009bc...7ddd7426 - 4 commits from branch
added 1 commit
- 5032aebd - add changes to DB to not plot GPS channel and fix height of External SOH channels
added 1 commit
- 4607f920 - flake8, fix bug calling display_tracking_info with 'info' for LogType.INFO
added 1 commit
- f2e2a8f6 - change quest in variable and function names to question
added 4 commits
-
f7a37904...93b79182 - 2 commits from branch
master
- b7ff2b91 - revert changes in DB
- b2d3c9c9 - Merge branch 'master' into i110_channel_order
-
f7a37904...93b79182 - 2 commits from branch
removed review request for @kienle
added 7 commits
-
b2d3c9c9...493aaceb - 6 commits from branch
master
- 7b858e70 - Merge branch 'master' into i110_channel_order
-
b2d3c9c9...493aaceb - 6 commits from branch
added 2 commits
requested review from @kienle
added 3 commits
-
3d236dda...77c4835d - 2 commits from branch
master
- a1683f45 - Merge branch 'master' into i110_channel_order
-
3d236dda...77c4835d - 2 commits from branch
mentioned in commit d7dd754d