--
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 visit https://groups.google.com/d/msgid/weewx-user/871567a8-e4c3-450a-b398-626657751352n%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/a81e75d7-61ea-4e6d-888c-81ad4f21d73fn%40googlegroups.com.
""" units common to all stations, including fixes to weewx base
common_units.py Graham Eddy <g...@geddy.au> 2025-06-20
"""
import weewx.units
#:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# gaps in weewx base
#:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# unit -> label
weewx.units.default_unit_label_dict['kilowatt'] = u' kW'
weewx.units.default_unit_label_dict['inverted_mask'] = u' alarm'
# unit -> format
weewx.units.default_unit_format_dict['kilowatt'] = '%.1f'
weewx.units.default_unit_format_dict['inverted_mask'] = '%.0f'
# unit_system/group -> unit
weewx.units.USUnits['group_mask'] = 'inverted_mask'
weewx.units.MetricUnits['group_mask'] = 'inverted_mask'
weewx.units.MetricWXUnits['group_mask'] = ‘inverted_mask'
# data_type -> group
weewx.units.obs_group_dict['luminosity'] = 'group_power'
weewx.units.obs_group_dict['lightning_distance'] = 'group_distance'
weewx.units.obs_group_dict['lightning_last_det_time'] = 'group_time'
weewx.units.obs_group_dict['lightning_strike_count'] = 'group_count'
weewx.units.obs_group_dict['txBatteryStatus'] = 'group_mask'
#:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# customisations
#:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# unit_system/group -> unit
# override insane existing defaults
weewx.units.MetricUnits['group_rain'] = 'mm'
weewx.units.MetricUnits['group_rainrate'] = 'mm_per_hour'
--
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 visit https://groups.google.com/d/msgid/weewx-user/448d56bc-5265-4daa-8679-9d27f00f24cen%40googlegroups.com.