--
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/d3d4555a-b6b7-4594-a022-128c6739442cn%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/e02afe5c-dad3-4801-a3b1-37d355ba4e96n%40googlegroups.com.
You have a couple of options. If all (or the majority) of your data coming in is metric, you can use; https://github.com/bellrichm/WeeWX-MQTTSubscribe/wiki/Common-Options#unit_system
Or you can set it at the field level via, https://github.com/bellrichm/WeeWX-MQTTSubscribe/wiki/Additional-Options#units
So it looks like your pressure is off by a factor of 100. I would think either of these would work (untested).
http://www.weewx.com/docs/5.0/reference/weewx-options/stdcalibrate/?h=stdco
[StdCalibrate]
[[Corrections]]
barometer = barometer / 100
https://github.com/bellrichm/WeeWX-MQTTSubscribe/wiki/Additional-Options#conversion_func
[[[pa]]]]
ignore = false # opt back in for this field
name = barometer
units = hPa
conversion_func = lambda x : x / 100
I can see pros and cons of either.