OmdenaAI / myanmar-weather-forecasting

This project utilizes machine learning to predict extreme weather events and analyze traffic congestion in Southeast Asia. The repository includes data analysis, model training, and visualization scripts to forecast weather conditions for the next 30 days and enhance transportation efficiency.
GNU General Public License v3.0
11 stars 1 forks source link

Collect open-meteo data from different points in a country instead of a single point #9

Closed CarlosGDCJ closed 1 year ago

CarlosGDCJ commented 1 year ago

The open-meteo API allows us to specify coordinates from where the information comes from. Currently our information comes from a single point. Maybe we could sample data from various points in a country an use that in our models.

CarlosGDCJ commented 1 year ago

Taking a better look at the open-meteo API, it seems the data has a resolution of 10Km (0.1°), which is not exactly a point, but may be small enough that it's still an issue.

haniyrasul commented 1 year ago

I'll look into that !

CarlosGDCJ commented 1 year ago

I've assigned it to you @haniyrasul. I expect you to:

Remember to put your work in a new branch.

haniyrasul commented 1 year ago
CarlosGDCJ commented 1 year ago

50 cities sound like too much. From these 50 you can choose 10. Remember that we don't want the most important cities. We want cities that are located all around the country.

To get the data you should use the latitude and longitude values. Remember to do that by querying the API. You can use the open_meteo.py script as a reference.

haniyrasul commented 1 year ago

Thanks, I'll work along this way.