#!/bin/bash

/usr/bin/Xvfb :1 -screen 0 1280x1024x8 2>/dev/null &
psID=`echo $!`

../bnc -nw -conf /dev/null -display :1 --platform offscreen\
       -key reqcAction Analyze \
       -key reqcObsFile Input/MAC100AUS_R_20211250000_01D_30S_MO.rnx \
       -key reqcNavFile Input/BRDC00WRD_R_20211250000_01D_MN.rnx \
       -key reqcSkyPlotSignals "G:1&2&5 R:1&2&3 E:1&7 C:2&6" \
       -key reqcOutLogFile Output/RinexQc.log \
       -key reqcPlotDir Output

kill $psID

