orion-junkins / river-level-forecasting

Exploring various neural network architectures for river level forecasting
MIT License
3 stars 3 forks source link

Adjust ECMWF Adapter API Call #183

Open dunnlu opened 8 months ago

dunnlu commented 8 months ago

Currently, get_current and get_historical return a single WeatherApiResponse. The API allows for the returning of a list of WeatherApiResponses by location, which would reduce the number of API calls, while retaining the same amount of information. Get_current and get_historical would then return a list of WeatherApiResponses rather than a single one, and the weather provider would parse through the list rather than calling get_current or get_historical for each location.