On Tuesday, March 7, 2017 at 11:36:53 PM UTC-5, Ian Boag wrote: > > Not sure where to start - the obvious place is the fousb.py driver and > have it go to a file with the downloaded query in it (instead of talking to > the station). I can read the numbers etc. I assume that fousb.py just > returns the values from the station .... and would return them from a file > instead. I can do the python for the JSON query and > extraction/reformatting etc. >
consider these options: 1) write your own driver. this driver would query the weather station. run one instance of weewx using this driver, and another instance of weewx with your existing configuration, resulting in two databases. integrate the data from both instances in a combined report. 2) write a service. this service would query the weather station and add its data to whatever data you are currently getting. if the data overlap (e.g., both stations report windSpeed) then you will have to extend the database schema. option (1) will be much easier to write and maintain. what kind of hardware is the commercial grade weather station? how do you communicate with it? m
