-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
argopy code samples and access patterns #1
Comments
I've also tried using the argo_loader.region([-147, -138, 24, 36, 0, 10000, '1999-01-01', '2023-01-01']).load() Supposedly one should be able to generate an xarray Dataset if you call the What I found successful, but indirect, was to use from argopy import IndexFetcher as ArgoIndexFetcher
idx = ArgoIndexFetcher(src='erddap').region([-147, -138, 24, 36, '1999-01-01', '2023-01-01']).load() Then You would then need to request data float by float with the |
I've also had inconsistent results using For reference I am using this the
EDIT: I've run it a number of times this morning without issue so might have just been a server-side or connection issue. |
Great! I remember running into that. But:
Exactly. And I've also had uneven results, where the date range I passed sometimes clearly missed data. |
I'll include some examples and notes for access to Argo data via the argopy package.
The materials in the Argo Online School can be helpful, too. Most of the lessons don't use
argopy
, though. See Accessing Argo data by float using Argopy and Accessing Argo data by date using Argopy. But keep in mind that these notebooks may have some subtle glitches (based on personal experience last month).Load all data for a specified float
Get only data that meets the top quality control (qc) flag.
float_ds
andfloat_profile_ds
are xarray DatasetsThe text was updated successfully, but these errors were encountered: