I have a template I have created to export a Cumulus format file to be used with WXSIM. It occasionally, usually at the top of the hour (hh:00) is corrupted with a rain tag like this:
Code: Select all
12/02/21,09:59,24.1,84,19.9,4.8,8.9,341,0.0,0.0,30.373,0.0,60.6,40,8.9,18.3,24.1,0.0,40,,,,,,
12/02/21,10:00,0,0,00,5.5,11.0,328,0,0,30.375,[rain0total-daysum=in.1],60.6,40,11.0,17.7,0,0,40,,,,,,
12/02/21,10:01,24.2,84,20.0,4.1,10.1,34,0.0,0.0,30.375,0.0,60.6,40,10.1,19.6,24.2,0.0,40,,,,,,
Code: Select all
# MeteoBridge: Cumulus-style export to feed WXSIM
#
# See: https://cumuluswiki.org/a/Standard_log_files
#pragma exportfile=[MMM][YY]log.txt
#pragma crlf=y
#pragma append=y
#pragma emptylines=n
[DD]/[MM]/[YY],[hh]:[mm],[th0temp-avg=F.1:0],[th0hum-avg.0:0],[th0dew-avg=F.1:00],[wind0wind-avg=mph.1:0],[wind0wind-max=mph.1:0],[wind0dir-avg.0:0],[rain0rate-avg=in.1:0],[rain0total-daysum=in.1:0],[thb0seapress-avg=inHg.3:0],[rain0total-daysum=in.1],[thb0temp-avg=F.1:0],[thb0hum-avg.0:0],[wind0wind-max=mph.1:0],[wind0chill-avg=F.1:0],[th0heatindex-avg=F.1:0],[uv0index-avg.1:0],[sol0rad-avg.0:0],,,,,,
Am I doing something wrong? Thanks!