# awkgram to convert aliodmon.c output files to a format compatible
# with files downloaded from Gravlog
BEGIN{FS=","; OFS=", "}
{
  station="ALMON-9999"
  print station, $1, $2, $3, $3, 0, 0, 0, 0, $4, $5, $6, $7, $8
}
