diff --git a/routes/adjustmentMethods/EToAdjustmentMethod.ts b/routes/adjustmentMethods/EToAdjustmentMethod.ts index 128cfe0..7af5cef 100644 --- a/routes/adjustmentMethods/EToAdjustmentMethod.ts +++ b/routes/adjustmentMethods/EToAdjustmentMethod.ts @@ -55,7 +55,8 @@ async function calculateEToWateringScale( maxT: Math.round( etoData.maxTemp ), minH: Math.round( etoData.minHumidity ), maxH: Math.round( etoData.maxHumidity ), - wind: Math.round( etoData.windSpeed * 10 ) / 10 + wind: Math.round( etoData.windSpeed * 10 ) / 10, + p: Math.round( wateringData.precip * 100 ) / 100 } } }