fix conversion factor for inHg to mbar in ultimeter driver

This commit is contained in:
matthewwall
2016-04-20 10:20:04 -04:00
parent 9024bf9f91
commit d00fc901bf
2 changed files with 4 additions and 2 deletions

View File

@@ -58,9 +58,9 @@ import weewx.drivers
from weeutil.weeutil import timestamp_to_string
DRIVER_NAME = 'Ultimeter'
DRIVER_VERSION = '0.15'
DRIVER_VERSION = '0.16'
INHG_PER_MBAR = 0.0295333727
INHG_PER_MBAR = 0.0295299830714
METER_PER_FOOT = 0.3048
MILE_PER_KM = 0.621371

View File

@@ -19,6 +19,8 @@ Fixed anti-alias bug in genplot. Issue #111.
Corrected the conversion factor between inHg and mbar. Thanks to user Olivier.
Corrected conversion factor for inHg and mbar in ultimeter driver.
Plots longer than two years now use an x-axis increment of one year. Thanks to
user Olivier!