In: Computer Science
Is there any idea that what is the R formula for next ten days of weather if you can advice
Yes we can ,by means of these 4 steps
1.By means of API call by City Name: We can search weather for 10 days with data every 4-5 hours by city name. All weather data can be obtained in JSON and XML formats.
example: api.openweathermap.org/data/2.5/forecast?q={city name},{country code}
2.By means of Parameters like City Name and Country Code: We can search weather for 10 days with data every 4-5 hours by city name as well as country code.All weather data can be obtained in JSON and XML formats.
example: q city name,country code.
3.By means of Geographic Co-ordinates: We can search weather for 10 days with data every 4-5 hours by city name by Geographic Coordinates. All weather data can be obtained in JSON and XML formats.
example: api.openweathermap.org/data/2.5/forecast?lat=35&lon=139
4.By means of Zip Command:If the Country is not specified then the search works for USA as default
example: api.openweathermap.org/data/2.5/forecast?zip=94040,us
But the 10-day-weather formula is only right about half a time !!