atmosphere.setPressure( doc.valueOf("/rss/channel/y:atmosphere/@pressure") );
atmosphere.setRising( doc.valueOf("/rss/channel/y:atmosphere/@rising") );
atmosphere.setWeather( weather );
weather.setAtmosphere( atmosphere );
Wind wind = new Wind();
wind.setChill( doc.valueOf("/rss/channel/y:wind/@chill") );
wind.setDirection( doc.valueOf("/rss/channel/y:wind/@direction") );
wind.setSpeed( doc.valueOf("/rss/channel/y:wind/@speed") );
wind.setWeather( weather );
weather.setWind( wind );
weather.setDate( new Date() );
return weather;