added weather method do receive historical + forecast weatherdata.
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit

This commit is contained in:
2020-07-21 16:57:11 +02:00
parent 464b82bfb9
commit eb560aaf33
2 changed files with 78 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
export interface WeatherData {
time: Date;
minTemp: number;
maxTemp: number;
relativeHumidity: number;
rain: number;
wspd?: number;
wdir_cardinal?: string;
wdir?: number;
}