Skip to content

Commit

Permalink
add QA grade to csv
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Jul 19, 2024
1 parent b1970bf commit eeb1cc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/mk_summary1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#set -e
#set -x

_version="17-jul-2024"
_version="19-jul-2024"

if [ -z "$1" ]; then
src0=""
Expand Down Expand Up @@ -82,7 +82,7 @@ echo " comments"
echo " </th>"
echo " </tr>"

echo "obsnum,date,source,inttime,tau,rms,rms0" > $csv
echo "obsnum,date,source,inttime,tau,rms,rms0,qa" > $csv


n=0
Expand Down Expand Up @@ -165,7 +165,7 @@ for o in $(find . -maxdepth 1 -type d | sed s+./++ | sort -n); do
else
comments=""
fi
echo "$o,$date_obs,$src,$inttime,$tau,$rms,$rms0" >> $csv
echo "$o,$date_obs,$src,$inttime,$tau,$rms,$rms0,$qagrade" >> $csv

echo ' <tr class="item">'
echo " <td>"
Expand Down

0 comments on commit eeb1cc2

Please sign in to comment.