I have 2 weather stations using weewx (3.9.2): weatherflow and vantage vue. I've installed pyephem and added maxSolarRad database field in both setups.However, the maxSolarRad is not working in setup with vantage vue (shows N/A). This station does not provide solar radiation value but I tend to calculate it from the jar temperature. But I need a maxSolarRad. Is the maxSolarRad provided only with stations that have the solar sensor, or?
$ python
Python 2.7.13 (default, Sep 26 2018, 18:42:22)
[GCC 6.3.0 20170516] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ephem
>>> quit()
If no errors where thrown by python pyephem is installed fine.
Gary
I confirm the maxSolarRad is "None". How shall I proceed? Is this because Vantage Vue doesn't have a solar sensor and weeWX doesn't want to calculate any solar-related parameter?
$ python
Python 2.7.13 (default, Sep 26 2018, 18:42:22)
[GCC 6.3.0 20170516] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ephem
>>> quit()If no errors where thrown by python pyephem is installed fine.
sudo pip install pyephem
and restarted weewx. maxSolarRad works!
Thanks again!