Kevin Balem
Kevin Balem
of course, here's my example : `#READING from netCDF4 import Dataset import numpy as np my_nc_file = 'NRTOAGL01_20150315_fld_TEMP.nc' fh = Dataset(my_nc_file, mode='r') LON=fh.variables['longitude'][:] LAT=fh.variables['latitude'][:] TEMP=fh.variables['TEMP'][:] TEMP=TEMP[0,0,:,:] fh.close() #PLOTTING import matplotlib.pyplot...
Hi @SBS-EREHM , My guess is xarray version. We have some difficulties with latest versions of xarray. On my side, this works with `argopy 0.1.7` & `xarray 0.16.1` ``` from...
Yes, a `profile` or `float` request in `expert` mode with **localftp** source should return every variables available. But operations & filtering done for the `standard` mode are not **yet** supported...
Hi @SBS-EREHM , Sorry for the late response. I guess there is a bug here, or a lack of work at least, on the BGC part. First there's the `dataset`option...
Hi Loic, What feature would be (more) important here ? Accessing Andro from an online provider (like Erddap for Argo data), or having the displacement data into xarray object to...
> ok it's clearer. So the app will only access real-time trajectory data only? The advantage of Andro is all the extra work done to QC control the trajectory. >...
`Clearly, the overlapping boxes is something we should avoid` It's maybe the time to think about a "polygon" region fetching ?
Hi @mayursapkal , can you give me some examples of float and cycle numbers so I can check on my side ? Also, which data source do you use ?...
First thoughts and tests on metadata fetching : From python, I access the api with simple POST request : ```python import json, requests, pandas as pd StringJson = r'{"criteriaList":[{"field":"platformCode" [...]...
Hi ! great job on the plugin, I have the same need, different colors for each line, and even a different target icon for each trace. is it possible or...