You give up quickly.  If windrun is in your db and your Belchertown 
'records' page, you just need to find the right incantation to graph it 
however you want.

First check your db to be sure....

My VP2 data from the archive table

sqlite> select datetime(dateTime,'unixepoch','localtime'),windrun from 
archive order by rowid desc limit 5;
2024-06-04 09:40:00|0.5
2024-06-04 09:35:00|0.583333333333333
2024-06-04 09:30:00|0.5
2024-06-04 09:25:00|0.5
2024-06-04 09:20:00|0.333333333333333

or from the day summary table

select datetime(dateTime,'unixepoch','localtime'),dateTime,min,max,sum,wsum 
from archive_day_windrun order by rowid desc limit 10;

sqlite> select datetime(dateTime,'unixepoch','localtime'),sum,wsum from 
archive_day_windrun order by rowid desc limit 5;
2024-06-04 00:00:00|29.75|8925.0
2024-06-03 00:00:00|117.0|35100.0
2024-06-02 00:00:00|60.25|18075.0
2024-06-01 00:00:00|25.1666666666667|7550.0
2024-05-31 00:00:00|37.6666666666667|11300.0

(the last few days have been very windy here and it's only 9am)

and the Belchertown skin 'Records' page should show your yearly and alltime 
record totals for a day

Highest Daily Wind Run188.83 milesJanuary 9, 2024228.67 milesNovember 15, 
2021


-- 
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 weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/e1ecfd29-1f24-4198-b80e-2059bc5322een%40googlegroups.com.

Reply via email to