WeatherInformation: strange weather condition code 01dd
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Sat, 1 Nov 2014 02:27:49 +0000 (03:27 +0100)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Sat, 1 Nov 2014 02:27:49 +0000 (03:27 +0100)
see: http://openweathermap.org/img/w/01dd.png
There is no documentation about it but sometimes I am receiving it.

app/src/main/java/de/example/exampletdd/service/IconsList.java

index ea53085..26e37f5 100644 (file)
@@ -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() {