Great news, glad to hear you sorted it. Cheers Colin
On Wed, 12 Dec 2018, 03:47 G Hammer <[email protected] wrote: > I did. The sqlite3 commands from Phil allowed me to see that whatever > config I did was not actually active. > I blame user error as I had edited files on one machine and ftp'd the > files to the server. > Performing the entire process on the server gave the expected result. > > Thanks for the education to all! > > On Monday, December 10, 2018 at 7:05:31 PM UTC-5, Colin Larsen wrote: >> >> Do you also see errors on your Records page where Highest App Temp and >> Lowest App temp are? >> >> On Tue, Dec 11, 2018 at 12:03 PM <[email protected]> wrote: >> >>> That should do it. >>> >>> If you have sqlite3 installed, you can open the database with the >>> command sqlite3 weewx.sdb and then issue the command: >>> >>> .schema archive >>> >>> You should see `appTemp` REAL at the end of the list. >>> >>> The command: >>> >>> .tables >>> >>> should show archive_day_appTemp somewhere in the list. >>> >>> .exit >>> >>> will exit the program >>> >>> It's best to have weewx stopped prior to opening the database with >>> sqlite3. >>> phil >>> >>> >>> On Monday, December 10, 2018 at 5:41:02 PM UTC-5, G Hammer wrote: >>> >>>> Hmmm, well then I'm at a loss. >>>> I though the database had been extended. >>>> >>>> Here's what I did: >>>> >>>> Edit extensions.py to be: >>>> import schemas.wview >>>> schema_apptemp = schemas.wview.schema + [('appTemp', 'REAL')] >>>> Stop weewx >>>> Edit weewx.conf to have: >>>> [DataBindings] >>>> >>>> [[wx_binding]] >>>> # The database must match one of the sections in [Databases]. >>>> # This is likely to be the only option you would want to >>>> change. >>>> database = archive_sqlite >>>> # The name of the table within the database >>>> table_name = archive >>>> # The manager handles aggregation of data for historical >>>> summaries >>>> manager = weewx.wxmanager.WXDaySummaryManager >>>> # The schema defines the structure of the database. >>>> # It is *only* used when the database is created. >>>> #schema = schemas.wview.schema >>>> schema = user.extensions.schema_apptemp >>>> Ran wee_database weewx.conf --reconfigure >>>> Renamed weewx.sdb to weewx.sdb.org >>>> Renamed the new file to weewx.sdb >>>> Ran wee_database --rebuild-daily >>>> >>>> Start weewx >>>> >>>> >>>> On Monday, December 10, 2018 at 1:30:05 PM UTC-5, Colin Larsen wrote: >>>>> >>>>> If you haven't extended the database as per the Weewx wiki you will >>>>> get those errors. I haven't written a guide but it is reasonably >>>>> straightforward >>>>> >>>>> On Tue, 11 Dec 2018, 07:05 G Hammer <[email protected] wrote: >>>>> >>>>>> Yes, in fact followed your guide above. >>>>>> The Feels like shows in the temp display, but when enabled in charts >>>>>> you get the error. >>>>>> >>>>>> -- >>>>>> 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. >>> >> -- > 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.
