/**
  * Metoda koja koristi webs ervis za sohvaćanje meteoroloških podataka preko danog zip koda,
  * jedinice mjere i APi ključa
  *
  * @param zipCode - dani zip kod
  * @param unittype - tip jedinice mjere (metrički ili engleski sustav)
  * @param aCode - api key
  * @return
  */
 private static LiveWeatherData getLiveWeatherByUSZipCode(
     java.lang.String zipCode, net.wxbug.api.UnitType unittype, java.lang.String aCode) {
   net.wxbug.api.WeatherBugWebServices service = new net.wxbug.api.WeatherBugWebServices();
   net.wxbug.api.WeatherBugWebServicesSoap port = service.getWeatherBugWebServicesSoap12();
   return port.getLiveWeatherByUSZipCode(zipCode, unittype, aCode);
 }