How to gather data from weather forecast?

18 vues (au cours des 30 derniers jours)
Fernando Penaherrera
Fernando Penaherrera le 4 Sep 2018
Commenté : Saleh le 1 Sep 2020
Hi!
I am developing a script which uses outside temperature as input for a calculation of ventilation requirements in a house.
I wanted to use data from a weather forecast website. How can I make a script to read and save the Temperature data from tomorrow or next week?
For example, how do I get a table with this data?
https://www.google.de/search?q=quito+temperatura&rlz=1C1CHBF_deDE773DE773&oq=quito+temperatura&aqs=chrome..69i57j0l5.2527j1j4&sourceid=chrome&ie=UTF-8
Thanks in advance.

Réponses (2)

Nikilesh Chilkuru
Nikilesh Chilkuru le 6 Sep 2018
Modifié(e) : Nikilesh Chilkuru le 7 Sep 2018
Google Uses Weather Underground API to provide current weather information. They stopped issuing free API keys which you can use in your applications.  You can search for public API's that provide weather data. One of them is Weather API provided by OpenWeatherMap. You can browse to the link provided below and signup for the account and you can generate keys.
After generating the API key you can use them in your application and make calls to this API providing query parameters using MATLAB function "webread". To get more information on how to use function "webread" refer:
I am providing a simple example of using "webread" with OpenWeatherMap API.
key = 'YOUR_API_KEY';
options = weboptions('ContentType','json');
url = ['https://api.openweathermap.org/data/2.5/weather?q=', 'London','&APPID=',key];
Current_Data = webread(url, options);
You can browse through API doc and get familiar with how to use it depending on your requirements. Also, you can use other public weather API's as well depending on which one you feel suits your application the best. But the procedure to read from an API would be the same.
  2 commentaires
Xinran Wan
Xinran Wan le 29 Avr 2019
Thanks so much!! It actually works:))
Saleh
Saleh le 1 Sep 2020
Hello; I have used your code and it works for me in this case:
url = ['https://api.openweathermap.org/data/2.5/onecall?lat=32.871105&lon=51.390099&appid=' ,key];
Current_Data = webread(url, options);
my question is for some latitude and longitude the recieved data is in cell format and for some is in struct format, could you please tell me the reason and how can I recieve all them in struct format?
Thanks in advance

Connectez-vous pour commenter.


James  Bowser
James Bowser le 3 Avr 2020
Modifié(e) : James Bowser le 3 Avr 2020
If you’re looking at the software side, I recommend Website
Open source, python, easily customizable, well supported.I use it on my personal weather station

Catégories

En savoir plus sur Weather and Atmospheric Science dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by