]> git.basschouten.com Git - openhab-addons.git/blob
79e384bfe64e7b7f3063fa172a07444ac46e20ae
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.synopanalyzer.internal.synop;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * The {@link WindDirections} enum possible overcast descriptions
19  *
20  * @author GaĆ«l L'hopital - Initial contribution
21  */
22 @NonNullByDefault
23 public enum Overcast {
24     UNDEFINED,
25     CLEAR_SKY,
26     CLOUDY,
27     SKY_NOT_VISIBLE;
28
29     /**
30      * Returns the overcast level depending upon octa
31      */
32     public static Overcast fromOcta(int octa) {
33         if (octa == 0) {
34             return Overcast.CLEAR_SKY;
35         } else if (octa > 0 && octa < 9) {
36             return Overcast.CLOUDY;
37         } else if (octa == 9) {
38             return Overcast.SKY_NOT_VISIBLE;
39         }
40         return Overcast.UNDEFINED;
41     }
42 }