You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is an example of a situation where the downloader would have to download a large amount and discard lots of it, because first we download the bounding box from erddap and then filter it to our polygon. The only high frequency dataset so far with many profiles is ADCP data, are there other examples?
I looked into whether we could download by passing profile IDs to the downloader instead of the polygon if we wanted to. This way the API would take the polygon and send a list of matching profile IDs to the downloader. Initially I thought this wouldn't work because of URL limits. Turns out that is mostly true, Apache has an ~8k character limit by default, this translates to ~600 IOS profile IDs max, but it would totally depend on the dataset as some could have long profile IDs.
So we could have a limit to how many profiles you can download at once, but that gets complicated. Eg there is one point where without a time filter there are 3356 profiles, so with no time filtering the API would have to pass 3356 profile IDs to the downloader, and the downloader would have to split the download up into 6 downloads. And that's for a single point
The text was updated successfully, but these errors were encountered:
Here is an example of a situation where the downloader would have to download a large amount and discard lots of it, because first we download the bounding box from erddap and then filter it to our polygon. The only high frequency dataset so far with many profiles is ADCP data, are there other examples?
I looked into whether we could download by passing profile IDs to the downloader instead of the polygon if we wanted to. This way the API would take the polygon and send a list of matching profile IDs to the downloader. Initially I thought this wouldn't work because of URL limits. Turns out that is mostly true, Apache has an ~8k character limit by default, this translates to ~600 IOS profile IDs max, but it would totally depend on the dataset as some could have long profile IDs.
So we could have a limit to how many profiles you can download at once, but that gets complicated. Eg there is one point where without a time filter there are 3356 profiles, so with no time filtering the API would have to pass 3356 profile IDs to the downloader, and the downloader would have to split the download up into 6 downloads. And that's for a single point
The text was updated successfully, but these errors were encountered: