On Sunday, February 6, 2022 at 9:54:02 AM UTC-5 [email protected] wrote: > The next step would be to use weewx to send a *.cvs file (in stead of > template's) with ftp every 2 minutes to my site containing all current > data, hourly high low data, per day all high low data, rain per hour, per > day, per 24 hours. And the all-time extremes in temperature, wind, > precipitation, etc. I'm not looking for a ready-made solution, but more > whether this is possible. >
definitely feasible. first install a service that emits your data to csv. maybe something like this: https://github.com/matthewwall/weewx-csv then create an ftp 'report' that transfers the csv. in your weewx config file, do something like this: [StdReport] [[FTP]] ... HTML_ROOT = path/to/directory/containing/csvfile similar configuration if you want to use rsync instead of ftp. note that this will not do your daily summaries (high/low). to do that you'd have to modify the csv generator to emit the summary data in addition to the current conditions. -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/81462971-a8d7-4be7-8ac4-672727a478b5n%40googlegroups.com.
