Skip to content

Commit d42679a

Browse files
authored
Update README.md
1 parent 1bf754b commit d42679a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ helper.getThreeHourForecastByCityName("Pretoria", new OpenWeatherMapHelper.Three
150150
"City/Country: "+ threeHourForecast.getCity().getName() + "/" + threeHourForecast.getCity().getCountry() +"\n"
151151
+"Forecast Array Count: " + threeHourForecast.getCnt() +"\n"
152152
//For this example, we are logging details of only the first forecast object in the forecasts array
153-
+"First Forecast Date in Milliseconds: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n"
153+
+"First Forecast Date Timestamp: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n"
154154
+"First Forecast Weather Description: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWeatherArray().get(0).getDescription()+ "\n"
155155
+"First Forecast Max Temperature: " + threeHourForecast.getThreeHourWeatherArray().get(0).getMain().getTempMax()+"\n"
156156
+"First Forecast Wind Speed: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWind().getSpeed() + "\n"
@@ -172,7 +172,7 @@ helper.getThreeHourForecastByCityID("524901", new OpenWeatherMapHelper.ThreeHour
172172
"City/Country: "+ threeHourForecast.getCity().getName() + "/" + threeHourForecast.getCity().getCountry() +"\n"
173173
+"Forecast Array Count: " + threeHourForecast.getCnt() +"\n"
174174
//For this example, we are logging details of only the first forecast object in the forecasts array
175-
+"First Forecast Date in Milliseconds: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n"
175+
+"First Forecast Date Timestamp: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n"
176176
+"First Forecast Weather Description: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWeatherArray().get(0).getDescription()+ "\n"
177177
+"First Forecast Max Temperature: " + threeHourForecast.getThreeHourWeatherArray().get(0).getMain().getTempMax()+"\n"
178178
+"First Forecast Wind Speed: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWind().getSpeed() + "\n"
@@ -195,7 +195,7 @@ helper.getThreeHourForecastByGeoCoordinates(6.5244,3.3792, new OpenWeatherMapHel
195195
"City/Country: "+ threeHourForecast.getCity().getName() + "/" + threeHourForecast.getCity().getCountry() +"\n"
196196
+"Forecast Array Count: " + threeHourForecast.getCnt() +"\n"
197197
//For this example, we are logging details of only the first forecast object in the forecasts array
198-
+"First Forecast Date in Milliseconds: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n"
198+
+"First Forecast Date Timestamp: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n"
199199
+"First Forecast Weather Description: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWeatherArray().get(0).getDescription()+ "\n"
200200
+"First Forecast Max Temperature: " + threeHourForecast.getThreeHourWeatherArray().get(0).getMain().getTempMax()+"\n"
201201
+"First Forecast Wind Speed: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWind().getSpeed() + "\n"
@@ -217,7 +217,7 @@ helper.getThreeHourForecastByZipCode("94040", new OpenWeatherMapHelper.ThreeHour
217217
"City/Country: "+ threeHourForecast.getCity().getName() + "/" + threeHourForecast.getCity().getCountry() +"\n"
218218
+"Forecast Array Count: " + threeHourForecast.getCnt() +"\n"
219219
//For this example, we are logging details of only the first forecast object in the forecasts array
220-
+"First Forecast Date in Milliseconds: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n"
220+
+"First Forecast Date Timestamp: " + threeHourForecast.getThreeHourWeatherArray().get(0).getDt() +"\n"
221221
+"First Forecast Weather Description: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWeatherArray().get(0).getDescription()+ "\n"
222222
+"First Forecast Max Temperature: " + threeHourForecast.getThreeHourWeatherArray().get(0).getMain().getTempMax()+"\n"
223223
+"First Forecast Wind Speed: " + threeHourForecast.getThreeHourWeatherArray().get(0).getWind().getSpeed() + "\n"

0 commit comments

Comments
 (0)