aboutsummaryrefslogtreecommitdiff
path: root/web/app/store/SpeedUnits.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/store/SpeedUnits.js')
-rw-r--r--web/app/store/SpeedUnits.js16
1 files changed, 15 insertions, 1 deletions
diff --git a/web/app/store/SpeedUnits.js b/web/app/store/SpeedUnits.js
index b658fc936..ee345621b 100644
--- a/web/app/store/SpeedUnits.js
+++ b/web/app/store/SpeedUnits.js
@@ -20,5 +20,19 @@ Ext.define('Traccar.store.SpeedUnits', {
data : [
{'key': 'kph', 'name': strings.shared_kph},
{'key': 'mph', 'name': strings.shared_mph}
- ]
+ ],
+
+ convert: function(value, unit) {
+ switch (unit) {
+ case 'kph':
+ return value * 1.852;
+ case 'mph':
+ return value * 1.15078;
+ }
+ return value;
+ },
+
+ getUnitName: function(unit) {
+ return this.findRecord('key', unit).get('name');
+ }
});