From d42679af21100272e4a6bafde4384758864bb427 Mon Sep 17 00:00:00 2001 From: Kwabena Berko Date: Mon, 7 Aug 2017 06:36:09 +0100 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7cc9b5c..7b01f74 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ helper.getThreeHourForecastByCityName("Pretoria", new OpenWeatherMapHelper.Three "City/Country: "+ threeHourForecast.getCity().getName() + "/" + threeHourForecast.getCity().getCountry() +"\n" +"Forecast Array Count: " + threeHourForecast.getCnt() +"\n" //For this example, we are logging details of only the first forecast object in the forecasts array - +"First Forecast Date in Milliseconds: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n" + +"First Forecast Date Timestamp: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n" +"First Forecast Weather Description: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWeatherArray().get(0).getDescription()+ "\n" +"First Forecast Max Temperature: " + threeHourForecast.getThreeHourWeatherArray().get(0).getMain().getTempMax()+"\n" +"First Forecast Wind Speed: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWind().getSpeed() + "\n" @@ -172,7 +172,7 @@ helper.getThreeHourForecastByCityID("524901", new OpenWeatherMapHelper.ThreeHour "City/Country: "+ threeHourForecast.getCity().getName() + "/" + threeHourForecast.getCity().getCountry() +"\n" +"Forecast Array Count: " + threeHourForecast.getCnt() +"\n" //For this example, we are logging details of only the first forecast object in the forecasts array - +"First Forecast Date in Milliseconds: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n" + +"First Forecast Date Timestamp: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n" +"First Forecast Weather Description: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWeatherArray().get(0).getDescription()+ "\n" +"First Forecast Max Temperature: " + threeHourForecast.getThreeHourWeatherArray().get(0).getMain().getTempMax()+"\n" +"First Forecast Wind Speed: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWind().getSpeed() + "\n" @@ -195,7 +195,7 @@ helper.getThreeHourForecastByGeoCoordinates(6.5244,3.3792, new OpenWeatherMapHel "City/Country: "+ threeHourForecast.getCity().getName() + "/" + threeHourForecast.getCity().getCountry() +"\n" +"Forecast Array Count: " + threeHourForecast.getCnt() +"\n" //For this example, we are logging details of only the first forecast object in the forecasts array - +"First Forecast Date in Milliseconds: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n" + +"First Forecast Date Timestamp: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n" +"First Forecast Weather Description: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWeatherArray().get(0).getDescription()+ "\n" +"First Forecast Max Temperature: " + threeHourForecast.getThreeHourWeatherArray().get(0).getMain().getTempMax()+"\n" +"First Forecast Wind Speed: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWind().getSpeed() + "\n" @@ -217,7 +217,7 @@ helper.getThreeHourForecastByZipCode("94040", new OpenWeatherMapHelper.ThreeHour "City/Country: "+ threeHourForecast.getCity().getName() + "/" + threeHourForecast.getCity().getCountry() +"\n" +"Forecast Array Count: " + threeHourForecast.getCnt() +"\n" //For this example, we are logging details of only the first forecast object in the forecasts array - +"First Forecast Date in Milliseconds: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n" + +"First Forecast Date Timestamp: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n" +"First Forecast Weather Description: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWeatherArray().get(0).getDescription()+ "\n" +"First Forecast Max Temperature: " + threeHourForecast.getThreeHourWeatherArray().get(0).getMain().getTempMax()+"\n" +"First Forecast Wind Speed: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWind().getSpeed() + "\n"