Well, you certainly have lots of data that predates 1-Jun-2018! Have you taken a look in the database to see whether the data are valid? Something like:
select dateTime, barometer, outTemp, outHumidity, from archive_day_outTemp where dateTime < 1527811200 limit 20; Question: when you say you "cannot see any values" (in your first email), did you mean the HTML files are there, they just contain blank lines? -tk On Sat, Mar 2, 2019 at 9:34 AM Michael <[email protected]> wrote: > Hi Thomas, > > I started the data import as follows: > wee_import --config=/home/weewx/weewx.conf > --import-config=/home/weewx/NexusImport/csv.conf > csv.conf ist attached > > and here is the result of the query: > > MariaDB [weewx]> select count(dateTime) from archive where dateTime < > 1527811200; > +-----------------+ > | count(dateTime) | > +-----------------+ > | 427392 | > +-----------------+ > 1 row in set (1.37 sec) > > MariaDB [weewx]> select count(dateTime) from archive_day_outTemp where > dateTime < 1527811200; > +-----------------+ > | count(dateTime) | > +-----------------+ > | 1499 | > +-----------------+ > 1 row in set (0.00 sec) > > Thanks, > Michael > > > Am Samstag, 2. März 2019 16:57:09 UTC+1 schrieb Thomas Keffer: >> >> 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 >> >> >> -- > 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.
