Class MyWeatherMap inherits OpenWeatherMap; it can be instantiated to check weather by feed in city name or zip code;
MyWeatherMap mwm = new MyWeatherMap(""); # create map object CurrentWeather cwd = mwm.currentWeatherByCityName(cityName); # search by city name CurrentWeather cwd = mwm.currentWeatherByZipCode(zipCode); # search by zip code
cwd.getMainInstance.getTemperature();
mwm.getCityName();
cwd.getWeatherInstance(0).getWeatherDescription();