--
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+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/eecad34a-41b2-4087-9221-460fffce4ee9o%40googlegroups.com.
[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.manager.DaySummaryManager
# The schema defines the structure of the database.
# It is *only* used when the database is created.
#schema = schemas.wview_extended.schema
schema = user.extensions.schema_extendedYou did not include a log, but on the basis of similar problems, I would bet that you used the wrong combination of schema and 'manager' in your configuration file, weewx.conf.Please post the section [DataBindings] in weewx.conf-tk
On Fri, Jul 10, 2020 at 7:26 AM Andre <agoet...@gmail.com> wrote:
--Hardware: Davis Vantage VueRaspberry Pi 4: Install with DEB packageWeeWX: 4.1.1Skin: Belchertown 1.2b6Actually, I just wanted to quickly correct a too high value of the rain rate. So I did:1. wee_database --drop-daily2. wee_database --rebuild-daily3. wee_database --updateAfter that the too high rain rate value was corrected, but the "snapshot" area in the Belchertown skin did not work anymore.So I uninstalled and reinstalled the Belchertown skin. After that everything worked as desired, but now the wind values were missing. Also the NOAA files were completely missing the wind data.I deleted all NOAA files and hoped that the wind data would be generated. Unfortunately without success.Can someone help me to solve the problem?Best regards, Andre
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...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/d559ad6e-6e58-48aa-9efb-81cea691da02o%40googlegroups.com.
#
# Copyright (c) 2009-2015 Tom Keffer <tke...@gmail.com>
#
# See the file LICENSE.txt for your full rights.
#
"""User extensions module
This module is imported from the main executable, so anything put here will be
executed before anything else happens. This makes it a good place to put user
extensions.
"""
import locale
# This will use the locale specified by the environment variable 'LANG'
# Other options are possible. See:
# http://docs.python.org/2/library/locale.html#locale.setlocale
locale.setlocale(locale.LC_ALL, '')
import schemas.wview
schema_extended = schemas.wview.schema + [('appTemp', 'REAL'), ('windrun', 'REAL')]To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/d559ad6e-6e58-48aa-9efb-81cea691da02o%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/4feb1c39-961a-4ee5-a34d-151524e92bbco%40googlegroups.com.
pi@weewx:~ $ sudo wee_database --rebuild-daily
Using configuration file /etc/weewx/weewx.conf
Using database binding 'wx_binding', which is bound to database 'archive_sqlite'
All daily summaries will be rebuilt.
Proceed (y/n)? y
Traceback (most recent call last):
File "/usr/share/weewx/weeutil/weeutil.py", line 1098, in get_object
mod = getattr(mod, part)
AttributeError: module 'weewx.manager' has no attribute 'WXDaySummaryManager'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/share/weewx/wee_database", line 974, in <module>
main()
File "/usr/share/weewx/wee_database", line 169, in main
rebuildDaily(config_dict, db_binding, options)
File "/usr/share/weewx/wee_database", line 264, in rebuildDaily
with weewx.manager.open_manager_with_config(config_dict, db_binding, initialize=True) as dbmanager:
File "/usr/share/weewx/weewx/manager.py", line 692, in open_manager_with_config
return open_manager(manager_dict, initialize)
File "/usr/share/weewx/weewx/manager.py", line 676, in open_manager
manager_cls = weeutil.weeutil.get_object(manager_dict['manager'])
File "/usr/share/weewx/weeutil/weeutil.py", line 1102, in get_object
"Module '%s' has no attribute '%s' when searching for '%s'" % (mod.__name__, part, module_class))
AttributeError: Module 'weewx.manager' has no attribute 'WXDaySummaryManager' when searching for 'weewx.manager.WXDaySummaryManager'To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/4feb1c39-961a-4ee5-a34d-151524e92bbco%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/a1ef01f9-0130-4a32-91b4-a6eff83e757do%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/a1ef01f9-0130-4a32-91b4-a6eff83e757do%40googlegroups.com.