public WeatherShowInfo(WeatherInfo weatherInfo) {
   // Temperature = weatherInfo.get
   this.setTemperature(new Float(weatherInfo.getMain().getTemp()).toString());
   this.setPressure(new Float(weatherInfo.getMain().getPressure()).toString());
   this.setHumidity(new Integer(weatherInfo.getMain().getHumidity()).toString());
   this.setWind(new Float(weatherInfo.getWind().getSpeed()).toString());
   this.setMoodDay("0");
 };