GetDeviatingWeather

fun GetDeviatingWeather(    getWeatherUseCase: GetWeatherUseCase,     deviationLimitTemp: Double,     deviationLimitWind: Double,     deviationLimitPrecipitation: Double,     possibleDeviationPoints: List<LatLng>,     context: Context)

getWeatherUseCase: Master location. deviationLimitTemp: How many degrees the temperature can deviate from the master location, before it is considered as deviating. deviationLimitWind: How many meters per second the wind speed can deviate from the master location, before it is considered as deviating. deviationLimitPrecipitation: How many millimeters per hour the precipitation can deviate from the master location, before it is considered as deviating. possibleDeviationPoints: The list of locations that should be checked for deviation.