> > > Is there a corresponding field name for "rain since midnight?" > > No. The fileparse driver is very basic, it takes field names and corresponding values from a text file and outputs them in a loop packet to be used by weeWX. The fileparse driver needs to output a field called rain that holds the total rainfall recorded in the period since the last loop packet. Therefore your python script needs to performs some calculations and outut something like:
... rain = 0.4 ... I would suggest that your python JSON-to-fileparse input script needs to find the difference between successive 'RainDaily' values and output that difference as the rain = value. You will need to handle the case where (presumably) the 'DailyRain' value resets to zero (whenever that may occur). Gary -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
