Ok, I understand. Stupide mistake !

But the error continues. I post the entire error log :


Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine: Caught 
unrecoverable exception in generator 
'user.belchertown.HighchartsJsonGenerator'
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****  Unknown data binding ''tide_biding''
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****  Traceback (most recent call last):
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****    File "/home/weewx/bin/weewx/manager.py", line 857, in 
get_manager_dict_from_config
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****      manager_dict = dict(config_dict['DataBindings'][data_binding])
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****    File "/usr/lib/python3/dist-packages/configobj.py", line 554, in 
__getitem__
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****      val = dict.__getitem__(self, key)
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****  KeyError: 'tide_biding'
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****  During handling of the above exception, another exception occurred:
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****  Traceback (most recent call last):
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****    File "/home/weewx/bin/weewx/reportengine.py", line 197, in run
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****      obj.start()
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****    File "/home/weewx/bin/weewx/reportengine.py", line 385, in start
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****      self.run()
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****    File "/home/weewx/bin/user/belchertown.py", line 1547, in run
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****      archive = self.db_binder.get_manager(binding)
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****    File "/home/weewx/bin/weewx/manager.py", line 752, in get_manager
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****      manager_dict = get_manager_dict_from_config(self.config_dict,
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****    File "/home/weewx/bin/weewx/manager.py", line 859, in 
get_manager_dict_from_config
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****      raise weewx.UnknownBinding("Unknown data binding '%s'" % e)
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****  weewx.UnknownBinding: Unknown data binding ''tide_biding''
Jan 14 10:40:42 raspberrypi weewx[5806] ERROR weewx.reportengine:         
****  Generator terminated

Le samedi 14 janvier 2023 à 09:43:03 UTC+1, gjr80 a écrit :

> The error trace is exactly correct; you do not have a binding named 
> weewx_tide, that is the name of your database. Your binding is 
> tide_binding. Presumably you are trying to use your binding in tag(s) in 
> a report, in that case you need to look at the tags and ensure you are 
> using tide_binding as your binding.
>
> Gary
>
> On Saturday, 14 January 2023 at 17:39:07 UTC+10 [email protected] wrote:
>
>> sorry, but I couldn't find any documentation for this.  I tried to mimic 
>> the changes made by Cmon, but obviously that's not enough.
>>
>> Le samedi 14 janvier 2023 à 08:33:59 UTC+1, [email protected] a écrit :
>>
>>> Hello everyone;
>>>
>>>   For different reasons, I need to create a new database in which I 
>>> would draw data to feed my weather page.  A bit like Cmon.
>>>
>>>   Everything is ready except that weewx does not recognize it.
>>>
>>> Jan 13 19:10:23 raspberrypi weewx[5806] ERROR weewx.reportengine:       
>>>   ****      raise weewx.UnknownBinding("Unknown data binding '%s'" % e)
>>> Jan 13 19:10:23 raspberrypi weewx[5806] ERROR weewx.reportengine:       
>>>   ****  weewx.UnknownBinding: Unknown data binding ''weewx_tide''
>>>
>>>   My modified weewx.conf :
>>>
>>> [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 = user.extensions.schema_extended
>>>     [[cmon_binding]]
>>>         database = cmon_sqlite
>>>         table_name = archive
>>>         manager = weewx.manager.DaySummaryManager
>>>         schema = user.cmon.schema
>>>     [[tide_binding]]
>>>         database = tide_sqlite
>>>         table_name = archive
>>>         manager = weewx.wxmanager.WXDaySummaryManager
>>>         schema = user.extensions.schema_extended
>>>
>>>
>>> ##############################################################################
>>>
>>> #   This section defines various databases.
>>>
>>> [Databases]
>>>     
>>>     # A SQLite database is simply a single file
>>>     [[archive_sqlite]]
>>>         database_name = weewx.sdb
>>>         database_type = SQLite
>>>     [[tide_sqlite]]
>>>         database_name = weewx_tide.sdb
>>>         database_type = SQLite
>>>         
>>>     # MySQL
>>>     [[archive_mysql]]
>>>         database_name = weewx
>>>         database_type = MySQL
>>>     [[cmon_sqlite]]
>>>         database_type = SQLite
>>>         database_name = cmon.sdb
>>>
>>

-- 
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].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/34de0df2-edf9-4141-9ff0-691e1ef44acfn%40googlegroups.com.

Reply via email to