Do you recall how you did wee_import? Are you sure the missing data was actually imported?
We can check what is actually in your database, but, first, you will need to locate it. If you used a package installer (apt-get), it will be in /var/lib/weewx/weewx.sdb. If you used setup.py, it will be in /home/weewx/archive/weewx.sdb. You may have to install the tool sqlite3: *sudo apt-get install sqlite3* Then using the tool (substitute the location of your database for weewx.sdb): *sqlite3 weewx.sdb* sqlite> *select count(dateTime) from archive where dateTime < 1527811200;* sqlite> *select count(dateTime) from archive_day_outTemp where dateTime < 1527811200;* This will tell us how many record are in your archive and daily summaries before 1-June-2018 UTC. -tk On Sat, Mar 2, 2019 at 5:52 AM Michael <[email protected]> wrote: > Hi Andrew, > > done as described. The NOAA reports were also rebuilt, but still the > imported periods are without data. > > Michael > > Am Samstag, 2. März 2019 14:31:31 UTC+1 schrieb Andrew Milner: >> >> If you are certain the imported data is in the database and it is just >> the NOAA reports which are missing then the easiest way is to force a >> recreation of all the NOAA reports. >> >> Just stop weewx, delete all the NOAA files (monthly and yearly) in the >> NOAA directory, and restart weewx. On the next report cycle all the NOAA >> reports will be generated. >> >> >> >> On Saturday, 2 March 2019 15:00:29 UTC+2, Michael wrote: >>> >>> Hello, >>> >>> I've been using WeeWX since 06/2018 and am excited about the stability >>> and the easy way to customize. I imported my old data with wee_import. >>> >>> If I want to access the old data via Monthly Reports, I can select the >>> individual months, but the reports do not contain any values. From 06/2018 >>> on values are displayed. What prerequisites must be met for the imported >>> data to be displayed in this way? >>> >>> I am using WeeWX 3.9.1 on a Raspi 3B+ with mysql. >>> >>> >>> >>> Thank you very much for your hints >>> >>> Michael >>> >> -- > 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. > -- 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.
