Timeout error when pulling NLDAS data. #42
-
Hi all, nldas_data is a list of dataframes, its a list since i am pulling from multiple locations. I am attempting to pull all data from the past 20 years, but when trying to pull the first dataset, i am timing out. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is a common issue when working with web services for large requests, which in your case it's quite large, considering that you're requesting 20 years of hourly data for many points. It's much more efficient to use batching, let's say 100 coords at a time, then saving the results and then concatenating them. You can pass the indices of your coords to the |
Beta Was this translation helpful? Give feedback.
This is a common issue when working with web services for large requests, which in your case it's quite large, considering that you're requesting 20 years of hourly data for many points. It's much more efficient to use batching, let's say 100 coords at a time, then saving the results and then concatenating them. You can pass the indices of your coords to the
coords_id
argument, to make concatenation easier.