diff --git a/VECTO/OutputData/JSONFileWriter.vb b/VECTO/OutputData/JSONFileWriter.vb index a3a3ed1cd9441bbd25edcf245f1f1d427893e775..e418f681ce5f4a1c6fc77f0e029f7b2f67f31f84 100644 --- a/VECTO/OutputData/JSONFileWriter.vb +++ b/VECTO/OutputData/JSONFileWriter.vb @@ -366,9 +366,9 @@ Public Class JSONFileWriter body.Add("EngineStopStartMaxOffTimespan", driver.EngineStopStartData.MaxEngineOffTimespan.Value()) body.Add("EngineStopStartUtilityFactor", driver.EngineStopStartData.UtilityFactor) - body.Add("EcoRollMinSpeed", driver.EcoRollData.MinSpeed) - body.Add("EcoRollActivationDelay", driver.EcoRollData.ActivationDelay) - body.Add("EcoRollUnderspeedThreshold", driver.EcoRollData.UnderspeedThreshold) + body.Add("EcoRollMinSpeed", driver.EcoRollData.MinSpeed.AsKmph) + body.Add("EcoRollActivationDelay", driver.EcoRollData.ActivationDelay.Value()) + body.Add("EcoRollUnderspeedThreshold", driver.EcoRollData.UnderspeedThreshold.AsKmph) End If 'body.Add("StartStop", New Dictionary(Of String, Object) From {