|
|
@ -267,6 +267,12 @@ public class WeatherForecastController extends BaseController { |
|
|
|
|
|
|
|
String visLevel = jsonObject.getString("visLevel"); |
|
|
|
|
|
|
|
Double rhu = jsonObject.getDouble("rhu"); |
|
|
|
|
|
|
|
if (rhu > UniversalEnum.SIXTY.getNumber()) { |
|
|
|
jsonObject.put("weatherCondition", UniversalEnum.OVERCAST_SKY.getValue()); |
|
|
|
jsonObject.put("weatherConditionCode", UniversalEnum.OVERCAST_SKY.getNumber()); |
|
|
|
} else { |
|
|
|
if (Objects.equals(visLevel, UniversalEnum.ONE.getValue())) { |
|
|
|
jsonObject.put("weatherCondition", UniversalEnum.CLEAR_WEATHER.getValue()); |
|
|
|
jsonObject.put("weatherConditionCode", UniversalEnum.CLEAR_WEATHER.getNumber()); |
|
|
@ -277,6 +283,7 @@ public class WeatherForecastController extends BaseController { |
|
|
|
jsonObject.put("weatherCondition", UniversalEnum.OVERCAST_SKY.getValue()); |
|
|
|
jsonObject.put("weatherConditionCode", UniversalEnum.OVERCAST_SKY.getNumber()); |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
|
|
|
|
String preLevel = jsonObject.getString("preLevel"); |
|
|
|