On Tuesday, February 21, 2017 at 4:04:43 PM UTC-5, Tony Turner wrote: > > Is there a sqlite command I can use to find out if it were one event or > not? I thought about adding phpLiteAdmin to my PI so I can easily look at > the database and alter entries. It appears to work very much like > phpmyadmin that I use on some of my other servers. >
if you are using sqlite, it goes something like this: sqlite /var/lib/weewx/weewx.sdb sqlite> select dateTime,rain from archive where rain > 1; assuming that your database is US unit system (the default), your archive interval is 5 minutes (the default), then that should show any time that you got more than 1 inch in a 5 minute period. > Also, does the StdQC value need to be in mm even if the unit of measure is > set for inches? > http://weewx.com/docs/usersguide.htm#StdQC m -- 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.
