add not applicable Pegasus channels to DB with height=0: VGT, VPH, VPO, VPP, VPV
closes #268 (closed)
INSERT INTO Parameters (param, plotType, valueColorsB, valueColorsW, height) VALUES
('Pegasus GNSS time', 'linesDots','Line:#00FF00','Line:#00BB00',0),
('Pegasus GNSS HDOP', 'linesDots','Line:#00FF00','Line:#00BB00',0),
('Pegasus Seascan PPS phase', 'linesDots','Line:#00FF00','Line:#00BB00',0),
('Pegasus GNSS PDOP', 'linesDots','Line:#00FF00','Line:#00BB00',0),
('Pegasus GNSS VDOP', 'linesDots','Line:#00FF00','Line:#00BB00',0);
INSERT INTO Channels (channel, label,param, linkedChan, convertFactor, unit,fixPoint,dataType) VALUES
('VGT','GNSS time','Pegasus GNSS time',NULL,1,NULL,NULL,'Pegasus'),
('VPH','GNSS HDOP','Pegasus GNSS HDOP',NULL,1,NULL,NULL,'Pegasus'),
('VPO','PPS phase','Pegasus Seascan PPS phase', NULL,1,NULL,NULL,'Pegasus'),
('VPP','GNSS PDOP','Pegasus GNSS PDOP', NULL,1,NULL,NULL,'Pegasus'),
('VPV','GNSS VDOP','Pegasus GNSS VDOP',NULL,1,NULL,NULL,'Pegasus');