From: Gustavo Martin Morcuende Date: Sat, 1 Nov 2014 02:27:49 +0000 (+0100) Subject: WeatherInformation: strange weather condition code 01dd X-Git-Tag: weatherinformation-1.0~81 X-Git-Url: https://git.gumartinm.name/?a=commitdiff_plain;h=c90fa967a7d6de4baf6f525c87c9b7c90f3819dc;p=AndroidWeatherInformation WeatherInformation: strange weather condition code 01dd see: http://openweathermap.org/img/w/01dd.png There is no documentation about it but sometimes I am receiving it. --- diff --git a/app/src/main/java/de/example/exampletdd/service/IconsList.java b/app/src/main/java/de/example/exampletdd/service/IconsList.java index ea53085..26e37f5 100644 --- a/app/src/main/java/de/example/exampletdd/service/IconsList.java +++ b/app/src/main/java/de/example/exampletdd/service/IconsList.java @@ -12,6 +12,15 @@ public enum IconsList { return R.drawable.weather_clear; } }, + // TODO: I am sometimes receiving this code, there is no documentation about it on the + // openweathermap site.... But it exists!!! Some day, try to find out more information about it. + // see: http://openweathermap.org/img/w/01dd.png + ICON_01dd("01dd") { + @Override + public int getResourceDrawable() { + return R.drawable.weather_clear; + } + }, ICON_01n("01n") { @Override public int getResourceDrawable() {