Skip to content

Draft: Modify code to not read data for channels that have parameter notplot.

Lan Dam requested to merge i291_not_read_notplot_channels into develop

#291

-- Create not parameter for channel of which data won't need to be read 
INSERT INTO Parameters (param, plotType, valueColorsB, valueColorsW, height) VALUES('Not Read', NULL, NULL, NULL, 0);
--- Change channels with no plotType to Not Read except for Logging
UPDATE Channels  SET param='Not Read' WHERE param!= 'Logging' AND param in (SELECT param FROM Parameters WHERE plotType is NULL OR plotType='');

--- Change unused Pegasus channels to Not Read
UPDATE Channels  SET param='Not Read' WHERE  param in (SELECT param FROM Parameters WHERE param LIKE 'Pegasus%' AND height=0);
Edited by Lan Dam

Merge request reports