mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-26 15:21:41 +01:00
[weathercompany] Fix wind speed units (#8946)
Signed-off-by: Mark Hilbush <mark@hilbush.com>
This commit is contained in:
parent
123a2a12e5
commit
e862a0b699
@ -47,6 +47,7 @@ import org.eclipse.smarthome.core.library.types.QuantityType;
|
|||||||
import org.eclipse.smarthome.core.library.types.StringType;
|
import org.eclipse.smarthome.core.library.types.StringType;
|
||||||
import org.eclipse.smarthome.core.library.unit.ImperialUnits;
|
import org.eclipse.smarthome.core.library.unit.ImperialUnits;
|
||||||
import org.eclipse.smarthome.core.library.unit.SIUnits;
|
import org.eclipse.smarthome.core.library.unit.SIUnits;
|
||||||
|
import org.eclipse.smarthome.core.library.unit.SmartHomeUnits;
|
||||||
import org.eclipse.smarthome.core.thing.Bridge;
|
import org.eclipse.smarthome.core.thing.Bridge;
|
||||||
import org.eclipse.smarthome.core.thing.Thing;
|
import org.eclipse.smarthome.core.thing.Thing;
|
||||||
import org.eclipse.smarthome.core.thing.ThingStatus;
|
import org.eclipse.smarthome.core.thing.ThingStatus;
|
||||||
@ -187,7 +188,7 @@ public abstract class WeatherCompanyAbstractHandler extends BaseThingHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected Unit<?> getSpeedUnit() {
|
protected Unit<?> getSpeedUnit() {
|
||||||
return isImperial() ? ImperialUnits.MILES_PER_HOUR : SIUnits.KILOMETRE_PER_HOUR;
|
return isImperial() ? ImperialUnits.MILES_PER_HOUR : SmartHomeUnits.METRE_PER_SECOND;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected Unit<?> getLengthUnit() {
|
protected Unit<?> getLengthUnit() {
|
||||||
|
Loading…
Reference in New Issue
Block a user