Add precipitation to EToAdjustmentMethod rawData

This commit is contained in:
Matthew Oslan
2019-06-25 21:55:21 -04:00
parent 36c2435895
commit 03b1f4c341

View File

@@ -55,7 +55,8 @@ async function calculateEToWateringScale(
maxT: Math.round( etoData.maxTemp ), maxT: Math.round( etoData.maxTemp ),
minH: Math.round( etoData.minHumidity ), minH: Math.round( etoData.minHumidity ),
maxH: Math.round( etoData.maxHumidity ), 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
} }
} }
} }